Skip to main content
GET
/
.well-known
/
agent.json
Get Agent Card
curl --request GET \
  --url http://localhost:3773/.well-known/agent.json
{
  "id": "aa8bf76b-1d19-47a4-9316-7220ce8dd7a0",
  "name": "research_agent",
  "description": "A research assistant agent",
  "url": "http://localhost",
  "version": "2026.6.7.dev65+g6742cd6eb.d20260210",
  "protocolVersion": "1.0.0",
  "skills": [
    {
      "id": "question-answering-v1",
      "name": "question-answering",
      "documentationPath": "http://localhost/agent/skills/question-answering-v1"
    },
    {
      "id": "pdf-processing-v1",
      "name": "pdf-processing",
      "documentationPath": "http://localhost/agent/skills/pdf-processing-v1"
    }
  ],
  "capabilities": {
    "extensions": [
      {
        "uri": "did:bindu:your_email_at_example_com:research_agent:aa8bf76b1d1947a493167220ce8dd7a0",
        "description": "DID-based identity for research_agent",
        "required": false,
        "params": {
          "author": "your.email@example.com",
          "agent_name": "research_agent",
          "agent_id": "aa8bf76b1d1947a493167220ce8dd7a0"
        }
      }
    ],
    "pushNotifications": false,
    "streaming": false
  },
  "kind": "agent",
  "numHistorySessions": 10,
  "extraData": {
    "created": 1770833216,
    "server_info": "bindu Agent Server"
  },
  "debugMode": false,
  "debugLevel": 1,
  "monitoring": false,
  "telemetry": true,
  "agentTrust": {
    "identityProvider": "custom",
    "inheritedRoles": [],
    "creatorId": "system",
    "creationTimestamp": 1770821399,
    "trustVerificationRequired": false,
    "allowedOperations": {}
  },
  "defaultInputModes": [
    "text/plain",
    "application/json"
  ],
  "defaultOutputModes": [
    "text/plain",
    "application/json"
  ]
}

Response

200 - application/json

Agent card metadata

id
string<uuid>
required

Unique identifier for the agent

name
string
required

Agent name

version
string
required

Agent version

protocolVersion
string
required

A2A protocol version

kind
string
required

Resource kind (e.g., "agent")

description
string

Agent description

url
string

Base URL for the agent

skills
object[]
capabilities
object
numHistorySessions
integer

Number of history sessions to maintain

extraData
object

Additional metadata

debugMode
boolean

Whether debug mode is enabled

debugLevel
integer

Debug level (0-3)

monitoring
boolean

Whether monitoring is enabled

telemetry
boolean

Whether telemetry is enabled

agentTrust
object

Trust and identity information

defaultInputModes
string[]

Default accepted input MIME types

defaultOutputModes
string[]

Default output MIME types