protolabs42

A2A agent card

Returns the agent card describing this Chorus instance's capabilities, skills, and connection information per the A2A specification.

GET
/.well-known/agent-card.json

Returns the agent card describing this Chorus instance's capabilities, skills, and connection information per the A2A specification.

Response Body

application/json

curl -X GET "https://chorus.runclaw.run/.well-known/agent-card.json"
{
  "name": "string",
  "description": "string",
  "url": "string",
  "version": "string",
  "capabilities": {
    "streaming": true,
    "pushNotifications": true
  },
  "skills": [
    {
      "id": "string",
      "name": "string",
      "description": "string"
    }
  ]
}