Skip to main content
GET
/
api
/
v1
/
agents
/
{name}
Get agent
curl --request GET \
  --url http://localhost:3000/api/v1/agents/{name} \
  --cookie nut-session=
{
  "success": true,
  "data": {
    "agent": {
      "name": "<string>",
      "content": "<string>",
      "description": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  }
}

Authorizations

nut-session
string
cookie
required

Session cookie authentication

Path Parameters

name
string
required

Agent name

Response

Agent details

success
boolean
required
data
object