Credentials

List issued credentials

List every credential issued by the authenticated tenant, newest first. Each item is a management-view of an issued credential — its type, issuer, lifecycle status, status-list index, validity timestamps, holder key-binding, and the source session it was bridged from. The raw SD-JWT is not included (it is delivered only once at issuance). Scoped to the tenant derived from the API key. Requires Authorization: Bearer <tenant API key>.

get/v1/credentials

Response

Array of the tenant's issued credentials, ordered by issuance time descending.

Example response

{
  "items": [
    {
      "uuid": "c1d2e3f4-5a6b-4c7d-8e9f-0a1b2c3d4e5f",
      "vct": "https://acme-air.didit.me/credentials/loyalty-membership",
      "iss": "https://acme-air.didit.me",
      "status": "issued",
      "status_idx": 4213,
      "issued_at": "2026-06-30T12:00:00+00:00",
      "expires_at": "2027-06-30T12:00:00+00:00",
      "holder_cnf": {
        "jwk": {
          "kty": "EC",
          "crv": "P-256",
          "x": "f83OJ3D2xF1Bg8vub9tLe1gHMzV76e8Tus9uPHvRVEU",
          "y": "x_FEzRu9m36HLN_tue659LNpXW6pCyStikYjKIWI5a0"
        }
      },
      "source_session_id": "11111111-2222-3333-4444-555555555555"
    }
  ]
}

Changes