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

Well Known Openid Configuration

GET
https://demo-d.tradovateapi.com/v1/auth/wellknownopenidconfiguration
GET
/v1/auth/wellknownopenidconfiguration
1const url = 'https://demo-d.tradovateapi.com/v1/auth/wellknownopenidconfiguration';
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 "issuer": "string",
3 "authorization_endpoint": "string",
4 "token_endpoint": "string",
5 "userinfo_endpoint": "string",
6 "jwks_uri": "string"
7}
Was this page helpful?
Previous

Account Dependents

Next
Built with

Response

WellKnownOpenidConfigurationResponse
issuerstring<=64 characters
authorization_endpointstring<=64 characters
token_endpointstring<=64 characters
userinfo_endpointstring<=64 characters
jwks_uristring<=64 characters