Skip to main content
POST
/
did
/
resolve
Resolve DID
curl --request POST \
  --url http://localhost:3773/did/resolve \
  --header 'Content-Type: application/json' \
  --data '{
  "did": "did:bindu:raahul_at_getbindu_com:first_agent:e091ddb0b2c84bd8991fdfd1ecbb9da6"
}'
{
  "@context": [
    "https://www.w3.org/ns/did/v1",
    "https://bindu.ai/ns/v1"
  ],
  "id": "did:bindu:raahul_at_getbindu_com:first_agent:e091ddb0b2c84bd8991fdfd1ecbb9da6",
  "created": "2025-10-26T14:47:52.183416+00:00",
  "authentication": [
    {
      "id": "did:bindu:raahul_at_getbindu_com:first_agent:e091ddb0b2c84bd8991fdfd1ecbb9da6#key-1",
      "type": "Ed25519VerificationKey2020",
      "controller": "did:bindu:raahul_at_getbindu_com:first_agent:e091ddb0b2c84bd8991fdfd1ecbb9da6",
      "publicKeyBase58": "..."
    }
  ],
  "bindu": {
    "agentName": "first_agent",
    "userId": "raahul_at_getbindu_com",
    "skills": [
      "question-answering-v1"
    ],
    "capabilities": {
      "streaming": true
    },
    "description": "A helpful AI agent",
    "version": "1.0.0"
  },
  "service": [
    {
      "id": "did:bindu:raahul_at_getbindu_com:first_agent:e091ddb0b2c84bd8991fdfd1ecbb9da6#agent-service",
      "type": "BinduAgentService",
      "serviceEndpoint": "http://localhost:3773"
    }
  ]
}

Body

application/json
did
string
required
Example:

Response

@context
string[]
required
id
string
required
created
string<date-time>
authentication
object[]
bindu
object
service
object[]