cURL
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" } '
{ "id": "<string>", "authentication": [ { "id": "<string>", "type": "Ed25519VerificationKey2020", "controller": "<string>", "publicKeyBase58": "<string>" } ], "@context": [ "https://www.w3.org/ns/did/v1", "https://getbindu.com/ns/v1" ], "created": "2023-11-07T05:31:56Z", "verificationMethod": [ { "id": "<string>", "type": "Ed25519VerificationKey2020", "controller": "<string>", "publicKeyBase58": "<string>" } ] }
Alternate form for clients that prefer POST (keeps the DID out of URL logs). Returns the same document GET would.
GET
^did:bindu:.+
DID Document
Show child attributes
[ "https://www.w3.org/ns/did/v1", "https://getbindu.com/ns/v1"]
Was this page helpful?