Get DID History

Returns a single DID history record from the last 90 days.

Request

HTTP Method: GET

URI Path: /v3/did_history/{id}

Note

For all returned data attributes, see Did History Object.

URI Path Parameters

Name

Type

Is Required?

Description

id

string

Yes

Unique ID of the DID history record.

Examples

http

GET /v3/did_history/9e3b65e9-fdc4-1810-9e93-b7127ab6b976 HTTP/1.1
Host: api.didww.com
Content-Type: application/vnd.api+json
Accept: application/vnd.api+json
Api-Key: [API token]

curl

curl -i -X GET https://api.didww.com/v3/did_history/9e3b65e9-fdc4-1810-9e93-b7127ab6b976 -H "Accept: application/vnd.api+json" -H "Api-Key: [API token]" -H "Content-Type: application/vnd.api+json"

response

HTTP/1.1 200 OK
Content-Type: application/vnd.api+json

{
    "data": {
        "id": "9e3b65e9-fdc4-1810-9e93-b7127ab6b976",
        "type": "did_history",
        "attributes": {
            "did_number": "437xxxxxxxxx",
            "action": "removed",
            "method": "api3",
            "created_at": "2026-03-06T15:11:00.326Z"
        }
    },
    "meta": {
        "api_version": "2026-04-16"
    }
}

Other Responses

Code

Success

Description

404

No

Not Found

401

No

Unauthorized