Skip to main content
GET
/
v1
/
vc
/
issuer
/
credentials
cURL
curl --request GET \
  --url https://staging.terminal3.io/v1/vc/issuer/credentials \
  --header 'Authorization: Bearer <token>' \
  --header 'x-api-token: <x-api-token>'
{
  "data": [
    {
      "@context": [
        "<string>"
      ],
      "id": "<string>",
      "issuer": "<string>",
      "credentialSubject": {
        "id": "<string>"
      },
      "type": [
        "<string>"
      ],
      "validFrom": "<string>",
      "validUntil": "<string>",
      "proof": {
        "type": "<string>",
        "proofPurpose": "<string>",
        "verificationMethod": "<string>",
        "created": "<string>",
        "mandatoryPointers": [
          "<string>"
        ],
        "cryptosuite": "<string>",
        "@context": [
          "<string>"
        ],
        "proofValue": "<string>"
      },
      "credentialStatus": "<unknown>"
    }
  ]
}
After submitting verifiable credentials via the Store Credential API, the client can use this API to retrieve all issued credentials.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

x-api-token
string
required
x-api-subclient-id
string

Query Parameters

holder
string
Minimum string length: 1
id
string
Minimum string length: 1

Response

Success

data
object[]
required