Get Proof

Returns a single proof in the account.

Request

HTTP Method: GET

URI Path: /v3/proofs/{id}

Note

For all returned data attributes, see Proofs Object.

URI Query Parameters

Name

Type

Is Required?

Description

id

string

Yes

Unique ID identifier of the proof.

include

string

No

Related resources to include in the response. See Inclusion.

Includes

Value

Description

proof_type

Proof Types Object

entity

Identity Object or Address Object

Examples

http

GET /v3/proofs/84155378-88d5-456e-844d-103596e3fb2c 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/proofs/84155378-88d5-456e-844d-103596e3fb2c -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": "84155378-88d5-456e-844d-103596e3fb2c",
        "type": "proofs",
        "attributes": {
            "created_at": "2021-03-28T18:01:50.387Z",
            "expires_at": null,
            "external_reference_id": null
        },
        "relationships": {
            "proof_type": {
                "links": {
                    "self": "https://api.didww.com/v3/proofs/84155378-88d5-456e-844d-103596e3fb2c/relationships/proof_type",
                    "related": "https://api.didww.com/v3/proofs/84155378-88d5-456e-844d-103596e3fb2c/proof_type"
                }
            },
            "entity": {
                "links": {
                    "self": "https://api.didww.com/v3/proofs/84155378-88d5-456e-844d-103596e3fb2c/relationships/entity",
                    "related": "https://api.didww.com/v3/proofs/84155378-88d5-456e-844d-103596e3fb2c/entity"
                }
            }
        }
    },
    "meta": {
        "api_version": "2026-04-16"
    }
}

Other Responses

Code

Success

Description

404

No

Not Found

401

No

Unauthorized