---
title: "Get an issued credential"
method: GET
path: "/v1/credentials/{uuid}"
tags: ["Credentials"]
---

# Get an issued credential

`GET /v1/credentials/{uuid}`

Fetch one issued credential management record. Use this to check lifecycle status, issuer, validity timestamps, holder confirmation key, and source session information.

## Path parameters

- `uuid` string, required

## Response `200`

Issued credential management record.

- object
  - `uuid` string, uuid — Unique identifier of the issued credential.
  - `vct` string — VCT (Verifiable Credential Type) value of the issued credential.
  - `iss` string, uri — Issuer URL that issued the credential.
  - `status` string — Lifecycle status of the credential.
  - `status_idx` integer — Status-list index assigned to the credential.
  - `issued_at` string, date-time — Timestamp when the credential was issued.
  - `expires_at` string, date-time — Timestamp when the credential expires.
  - `holder_cnf` object — Holder confirmation key as a JWK (JSON Web Key) object.
    - `kty` string — JWK (JSON Web Key) key type.
    - `crv` string — Elliptic curve name in the JWK (JSON Web Key).
    - `x` string — X coordinate of the key.
    - `y` string — Y coordinate of the key.
  - `source_session_id` string — Source Didit verification session identifier. The captured record uses an empty string when no source session is linked.

## Other responses

- `404` — Not found — no such resource for this tenant (cross-tenant reads return 404, not 403). (Example: unknown credential id.)

---

[API](https://skmtc.net/didit-protocol/apis/didit-credentials-api.md) · [All operations](https://skmtc.net/didit-protocol/apis/didit-credentials-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/didit-protocol/didit-credentials-api/versions/e4eddba66557/schema)
