GET
/v1/keys/{projectId}

Path Parameters

projectId*string

Query Parameters

certs?boolean

Get public key for session token validation (V1)

This API endpoint will return the public key needed to handle the session token JWT validation. projectId is provided as a GET parameter, so this endpoint can be executed with a browser.

curl -X GET "https://api.descope.com/v1/keys/string"
{  "alg": "string",  "e": "string",  "kid": "string",  "kty": "string",  "n": "string",  "use": "string"}
export interface Response {alg?: stringe?: stringkid?: stringkty?: stringn?: stringuse?: string}
Was this helpful?