Authentication
JWKS URL
Public key endpoint for JWT token verification and signature validation
GET
Get JWKS public keys
Use this public endpoint to get the (JSON Web Key Set) containing Sukiโs public keys. Use these keys to verify the signature of any issued by Suki, such as the
suki_token.
This endpoint follows the RFC 7517 standard.
AuthenticationThis is a public endpoint and does not require authentication.
Common integration patterns and use cases
-
Verify issued tokens: Fetch the JWKS and use the matching public key to verify the signature of a
suki_tokenbefore trusting its claims. - Handle key rotation: Resolve signing keys by key ID and refresh the JWKS when a token references a key that is not in your cache.
- Cache public keys: Cache the JWKS according to your token-verification library or service policy, and refresh it when key resolution fails.
Code examples
- Python
- TypeScript
Response
200 - */*
JWKS document with public keys for partner token verification.
JSON Web Key Set document for partner token verification.
Array of JSON Web Keys used to verify partner token signatures.
Last modified on July 23, 2026
Get JWKS public keys