Check out our upcoming events and meetups! View events →
Retrieve the JSON Web Key Set for token verification
import Telnyx from 'telnyx';
const client = new Telnyx();
const response = await client.oauth.retrieveJwks();
console.log(response.keys);{
"keys": [
{
"kty": "<string>",
"use": "<string>",
"alg": "<string>",
"kid": "<string>"
}
]
}Documentation Index
Fetch the complete documentation index at: https://developers.telnyx.com/llms.txt
Use this file to discover all available pages before exploring further.
JSON Web Key Set
Show child attributes
Was this page helpful?
import Telnyx from 'telnyx';
const client = new Telnyx();
const response = await client.oauth.retrieveJwks();
console.log(response.keys);{
"keys": [
{
"kty": "<string>",
"use": "<string>",
"alg": "<string>",
"kid": "<string>"
}
]
}