Skip to main content
POST
/
did
/
resolve
Resolve a DID (via JSON body)
curl --request POST \
  --url http://localhost:3773/did/resolve \
  --header 'Content-Type: application/json' \
  --data '
{
  "did": "did:bindu:example_at_getbindu_com:example-agent:a1b2c3d4-e5f6-7890-abcd-1234567890ab"
}
'
{
  "@context": [
    "https://www.w3.org/ns/did/v1",
    "https://getbindu.com/ns/v1"
  ],
  "id": "did:bindu:bindu_builder_at_getbindu_com:agent:8faa865e-d8ec-8b2f-f000-598e8e463d60",
  "created": "2026-04-23T09:32:55.168183+00:00",
  "authentication": [
    {
      "id": "did:bindu:bindu_builder_at_getbindu_com:agent:8faa865e-d8ec-8b2f-f000-598e8e463d60#key-1",
      "type": "Ed25519VerificationKey2020",
      "controller": "did:bindu:bindu_builder_at_getbindu_com:medical_agent:8faa865e-d8ec-8b2f-f000-598e8e463d60",
      "publicKeyBase58": "G53goNNEDqaHLMJWzdHvnEBG7xDd7jJjjhB3FUwtzWnn"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.getbindu.com/llms.txt

Use this file to discover all available pages before exploring further.

Body

application/json
did
string
required
Pattern: ^did:bindu:.+

Response

DID Document

id
string
required
Pattern: ^did:bindu:.+
authentication
object[]
required
@context
string[]
Example:
[
"https://www.w3.org/ns/did/v1",
"https://getbindu.com/ns/v1"
]
created
string<date-time>
verificationMethod
object[]