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

# Get an issued credential

`GET /v1/credentials/{uuid}`

Retrieve a single issued credential by its uuid, in the same management-view shape returned by the list endpoint. Use it to check a credential's current lifecycle status or its validity window. The lookup is scoped to the authenticated tenant; a credential belonging to a different tenant returns 404 (the cross-tenant access guard). Requires Authorization: Bearer <tenant API key>.

## Path parameters

- `uuid` string, uuid, required

## Response `200`

The issued-credential management record.

- object
  - `uuid` string, uuid — Unique identifier of the issued credential.
  - `vct` string — Verifiable Credential Type of the issued credential.
  - `iss` string — Issuer identifier (the https iss URL) of the tenant that issued the credential.
  - `status` 'issued' | 'suspended' | 'revoked' | 'expired' — Lifecycle status of the credential. `issued` is valid and verifiable; `suspended` is temporarily disabled (reversible); `revoked` is permanently invalidated; `expired` is past its expires_at.
  - `status_idx` integer, nullable — Index of this credential in the tenant's IETF Token Status List. Null for non-revocable credentials.
  - `issued_at` string, date-time — ISO 8601 timestamp when the credential was issued.
  - `expires_at` string, date-time, nullable — ISO 8601 timestamp when the credential expires. Null if the credential has no expiry.
  - `holder_cnf` object — The holder key-binding confirmation (cnf) object that binds the credential to its holder.
  - `source_session_id` string — Identifier of the Didit verification session this credential was bridged from, or an empty string if none.

## Changes

- **2026-06-30** `1ee4908e9af4` — 1 info
  - added the media type `application/json` for the response with the status `200`

[Change history](https://skmtc.dev/didit-protocol/apis/didit-credentials-api/changes/v1/credentials/:uuid/get.md)

---

[API](https://skmtc.dev/didit-protocol/apis/didit-credentials-api.md) · [All operations](https://skmtc.dev/didit-protocol/apis/didit-credentials-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/didit-protocol/didit-credentials-api/revisions/2eeb13158ffa/schema)
