OpenID4VCI Protocol
SD-JWT VC issuer JWKS
Fetch the SD-JWT VC (Selective-Disclosure JWT Verifiable Credential) issuer metadata for a tenant. Wallets and verifiers use the returned JWKS (JSON Web Key Set) to validate credentials signed by this issuer.
get/v1/issuers/{slug}/.well-known/jwt-vc-issuer
Path parameters
slugstring required
Send the issuer tenant slug.
Response
Didit returned the issuer identifier and signing keys.
Example response
{
"issuer": "http://localhost:8011/v1/issuers/docs-capture-6clew6",
"jwks": {
"keys": [
{
"crv": "P-256",
"kid": "9hStvT31-vXqUluU380kWkrTdInbdUf_4jh1-vooYks",
"kty": "EC",
"x": "W1zJcTfyyQW5XfreBp-CMPnQY8-vc2ilG-tIy7IUamY",
"y": "tyQkIJP5gyUtaoHjPQxbor92GpC9ee2IA8z1dmMYLRI"
}
]
}
}