Credentials
Fetch one schema plus its full version family.
Fetch one credential schema and its version family. Use this to inspect the current schema fields and see which versions are active or deprecated.
get/v1/credential-schemas/{uuid}
Path parameters
uuidstring required
UUID of the credential schema to fetch.
Response
Credential schema details with its version history.
Example response
{
"uuid": "2e844e4b-e7da-4d94-828e-eee9bdf66349",
"name": "Loyalty Membership",
"vct": "AirlineLoyalty",
"version": "1.0",
"format": "sd_jwt_vc",
"attributes": [
{
"name": "given_name",
"sd": true
},
{
"name": "tier",
"sd": true
}
],
"branding": {},
"revocable": true,
"status": "active",
"created_at": "2026-07-02T23:33:33.468912Z",
"versions": [
{
"created_at": "2026-07-02T23:33:33.468912+00:00",
"is_latest": true,
"issued_count": 0,
"status": "active",
"supersedes": null,
"uuid": "2e844e4b-e7da-4d94-828e-eee9bdf66349",
"vct": "AirlineLoyalty",
"version": "1.0"
}
]
}