Get JWK Keys
curl --request GET \
--url https://developer.world.org/api/v1/jwksconst options = {method: 'GET'};
fetch('https://developer.world.org/api/v1/jwks', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"keys": [
{
"e": "<string>",
"n": "<string>",
"kty": "<string>",
"kid": "<string>"
}
]
}Developer Portal
Get JWK Keys
Retrieve JWKs (public keys) used to verify JWT signatures for verification requests. Responses aren’t cached at the edge, so cache keys client-side: refetch when a token’s kid is unknown, and expire the cache after a bounded TTL (e.g. 1 hour) so removed keys stop being trusted.
GET
/
api
/
v1
/
jwks
Get JWK Keys
curl --request GET \
--url https://developer.world.org/api/v1/jwksconst options = {method: 'GET'};
fetch('https://developer.world.org/api/v1/jwks', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"keys": [
{
"e": "<string>",
"n": "<string>",
"kty": "<string>",
"kid": "<string>"
}
]
}Response
200 - application/json
OK
Show child attributes
Show child attributes
Was this page helpful?