Skip to main content
GET
/
api
/
v1
/
identity
/
agent-card
Get agent card
curl --request GET \
  --url http://localhost:3000/api/v1/identity/agent-card \
  --cookie nut-session=
{
  "success": true,
  "data": {
    "agentCard": {
      "name": "<string>",
      "description": "<string>",
      "url": "<string>",
      "version": "<string>",
      "capabilities": {
        "streaming": true,
        "pushNotifications": true,
        "stateTransitionHistory": true
      },
      "skills": [
        {
          "id": "<string>",
          "name": "<string>",
          "description": "<string>"
        }
      ]
    }
  }
}

Authorizations

nut-session
string
cookie
required

Session cookie authentication

Response

Agent card

success
boolean
required
data
object