For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Support Center
OverviewAPIResources
OverviewAPIResources
  • REST API Endpoints
    • GETGet Timestamp
    • GETO IDC User Info
      • POSTAccess Token Request
      • GETChallenge
      • POSTCountry Is Banned
      • POSTGet Product
      • GETJ WKS
      • GETMe
      • POSTO Auth Token
      • GETProducts
      • GETRenew Access Token
      • POSTSearch
      • GETWell Known Openid Configuration
Support Center
LogoLogo
REST API EndpointsAuthentication

J WKS

GET
https://demo-d.tradovateapi.com/v1/auth/jwks
GET
/v1/auth/jwks
1const url = 'https://demo-d.tradovateapi.com/v1/auth/jwks';
2const options = {method: 'GET'};
3
4try {
5 const response = await fetch(url, options);
6 const data = await response.json();
7 console.log(data);
8} catch (error) {
9 console.error(error);
10}
200Retrieved
1{
2 "keys": [
3 {
4 "kty": "string",
5 "crv": "string",
6 "x": "string",
7 "use": "string",
8 "kid": "string"
9 }
10 ]
11}
Was this page helpful?
Previous

Me

Next
Built with

Response

JWKSResponse
keyslist of objects