Skip to content
English
  • There are no suggestions because the search field is empty.

Get JSON Web Key Set for token validation

GET /api/v1/auth/.well-known/jwks.json Select code sample Fetch cURL
const url = 'https://localhost:8080/api/v1/auth/.well-known/jwks.json';const options = {method: 'GET'};
try {  const response = await fetch(url, options);  const data = await response.json();  console.log(data);} catch (error) {  console.error(error);}
curl --request GET \  --url https://localhost:8080/api/v1/auth/.well-known/jwks.json

Return the public JWKS used by relying services to validate enriched tokens issued by the auth service

Responses

Section titled “ Responses ”

200

Section titled “200 ”

JWKS response

Media type application/json object keys Array
Example generated
{  "keys": [    "example"  ]}
Previous
Revoke API key
Next
Enrich JWT claims with user context and ensure DID key