Wallet
Get credential endpoint
Request issuance of a credential
post/credentials
Request body
Example request
{
"format": "jwt_vc_json",
"credential_identifier": "UniversityDegree_JWT",
"proof": {
"proof_type": "jwt",
"jwt": "eyJhbGciOiJFUzI1NiIsInR5cCI6IkpXVCJ9..."
},
"credential_response_encryption": {
"jwk": {
"kty": "EC",
"crv": "P-256",
"x": "...",
"y": "..."
},
"alg": "ES256",
"enc": "A256GCM"
}
}Response
Successful response with issued credential
Example response
{
"format": "jwt_vc_json",
"c_nonce": "b326c4ab-16f1-4304-83e1-4637f8fe4207",
"c_nonce_expires_in": 300
}