Issuer Keys
List issuer signing keys
List your issuer signing keys and the JWKS (JSON Web Key Set) discovery URI. You use this endpoint to inspect active and rotated keys before or after a rotation. The service creates an active signing key on first use when none exists.
get/v1/keys
Response
You receive the tenant's signing keys and the JWKS (JSON Web Key Set) URI that verifiers use to discover public keys.
Example response
{
"keys": [
{
"id": "1fe53cd3-ec80-4a69-ab90-f217ddf5f6a2",
"kid": "9hStvT31-vXqUluU380kWkrTdInbdUf_4jh1-vooYks",
"alg": "ES256",
"status": "active",
"is_active": true,
"created_at": "2026-07-02T23:33:32.141586+00:00"
}
],
"jwks_uri": "http://localhost:8011/v1/issuers/docs-capture-6clew6/.well-known/jwt-vc-issuer"
}