Skip to main content
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_token before 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

Response

200 - */*

JWKS document with public keys for partner token verification.

JSON Web Key Set document for partner token verification.

keys
object[]

Array of JSON Web Keys used to verify partner token signatures.

Last modified on July 23, 2026