---
title: "Resolve a DID (via query string)"
method: GET
path: "/did/resolve"
tags: ["DID Resolution"]
---

# Resolve a DID (via query string)

`GET /did/resolve`

Return the DID Document for a `did:bindu:...` identifier. The
document contains the agent's public key, which peers use to
verify signatures on artifacts and requests.

## Query parameters

- `did` string, required

## Response `200`

DID Document

- DidDocument
  - `@context` string[]
  - `id` string, required
  - `created` string, date-time
  - `authentication` VerificationMethod[], required
    - `id` string, required — DID-URL, typically `<did>#key-1`.
    - `type` 'Ed25519VerificationKey2020', required
    - `controller` string, required — DID of the entity that controls this key.
    - `publicKeyBase58` string, required — Base58-encoded 32-byte Ed25519 public key.
  - `verificationMethod` VerificationMethod[]
    - `id` string, required — DID-URL, typically `<did>#key-1`.
    - `type` 'Ed25519VerificationKey2020', required
    - `controller` string, required — DID of the entity that controls this key.
    - `publicKeyBase58` string, required — Base58-encoded 32-byte Ed25519 public key.

## Other responses

- `404` — DID not found

## Changes

- **2026-04-21** `8a22dc180044` — 1 info
  - endpoint added
- **2026-02-12** `970d68a5c55d` — 1 breaking
  - api removed without deprecation
- **2026-02-11** `975e49e9b675` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/getbindu/apis/bindu-agent-api/changes/did/resolve/get.md)

---

[API](https://skmtc.dev/getbindu/apis/bindu-agent-api.md) · [All operations](https://skmtc.dev/getbindu/apis/bindu-agent-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/getbindu/bindu-agent-api/revisions/e070faa5425b/schema)
