Skip to main content

Retrieve JSON Web Key Set

GET 

/auth/brands/:brandIdentity/certs

This endpoint contains the JWK used to verify all Paysafe-issued JWTs for this brand.

The JSON Web Key Set (JWKS) is a set of keys containing the public keys used to verify any JSON Web Token (JWT) issued by the Authorization Server and signed using the specified signing algorithm.

Paysafe uses the JSON Web Key (JWK) specification to represent the cryptographic keys used for signing RS256 tokens. This specification defines two high-level data structures: JSON Web Key (JWK) and JSON Web Key Set (JWKS). Here are the definitions from the specification:

ItemDescription
JSON Web Key (JWK)A JSON object that represents a cryptographic key. The members of the object represent properties of the key, including its value.
JSON Web Key Set (JWKS)A JSON object that represents a set of JWKs. The JSON object MUST have a keys member, which is an array of JWKs.

Request

Responses

A JSON Web Key Set (JWKS) containing the public keys.