v5

latestOpenAPI 3.0.0raw.githubusercontent.com2025-09-30102742.8 KB
Wallet

Get credential issuer metadata

Returns the metadata about the credential issuer's capabilities, conforms to OID4VCI

get/.well-known/openid-credential-issuer

Response

Successful response

credential_issuerstring required

URL identifying the credential issuer

credential_configurations_supportedobject required

Map of credential configuration IDs to their definitions

credential_endpointstring required
token_endpointstring

URL of the token endpoint

authorization_challenge_endpointstring

URL of the Authorization Challenge Endpoint

nonce_endpointstring

NEW in v1.0.15. URL of nonce endpoint

authorization_serversstring[]
deferred_credential_endpointstring
notification_endpointstring
credential_identifiers_supportedboolean

Whether credential_identifiers in Token Response is supported

Example response

{
  "credential_issuer": "https://issuer.example.com",
  "credential_endpoint": "https://issuer.example.com/credentials",
  "nonce_endpoint": "https://issuer.example.com/nonce",
  "batch_credential_issuance": {
    "batch_size": 5
  },
  "credential_response_encryption": {
    "alg_values_supported": [
      "ECDH-ES",
      "ECDH-ES+A256KW"
    ],
    "enc_values_supported": [
      "A256GCM",
      "A128GCM"
    ]
  },
  "display": [
    {
      "name": "University Degree",
      "locale": "en-US"
    }
  ]
}