Skip to main content
GET
/
.well-known
/
did.json
The gateway's self-published DID document.
curl --request GET \
  --url http://localhost:3774/.well-known/did.json
{
  "@context": [
    "https://www.w3.org/ns/did/v1",
    "https://getbindu.com/ns/v1"
  ],
  "id": "did:bindu:gateway-prod-key-1",
  "authentication": [
    {
      "id": "did:bindu:gateway-prod-key-1#key-1",
      "type": "Ed25519VerificationKey2020",
      "controller": "did:bindu:gateway-prod-key-1",
      "publicKeyBase58": "6MkjQ2r..."
    }
  ]
}

Response

DID document for the configured gateway identity.

W3C DID Core v1 document describing the gateway's identity. Deliberately omits created — the gateway's identity is env- driven and stateless, so there's no persisted "first published" moment to report (W3C DID Core has created as optional).

@context
string[]
required
Example:
[
"https://www.w3.org/ns/did/v1",
"https://getbindu.com/ns/v1"
]
id
string
required
Example:

"did:bindu:gateway-prod-key-1"

authentication
object[]
required