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

Products

GET
https://demo-d.tradovateapi.com/v1/markets/products
GET
/v1/markets/products
1const url = 'https://demo-d.tradovateapi.com/v1/markets/products';
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 "items": [
3 {
4 "name": "string",
5 "description": "string",
6 "tickSize": {
7 "value": 1.1,
8 "formattedValue": "string"
9 },
10 "valuePerPoint": {
11 "value": 1.1,
12 "formattedValue": "string"
13 },
14 "exchange": "string",
15 "group": "string",
16 "id": 1,
17 "months": "string",
18 "initialMargin": {
19 "value": 1.1,
20 "formattedValue": "string"
21 },
22 "maintenanceMargin": {
23 "value": 1.1,
24 "formattedValue": "string"
25 },
26 "dayMargin": {
27 "value": 1.1,
28 "formattedValue": "string"
29 },
30 "nightMargin": {
31 "value": 1.1,
32 "formattedValue": "string"
33 },
34 "clearingFee": {
35 "value": 1.1,
36 "formattedValue": "string"
37 },
38 "exchangeFee": {
39 "value": 1.1,
40 "formattedValue": "string"
41 },
42 "nfaFee": {
43 "value": 1.1,
44 "formattedValue": "string"
45 },
46 "brokerageFee": {
47 "value": 1.1,
48 "formattedValue": "string"
49 },
50 "commission": {
51 "value": 1.1,
52 "formattedValue": "string"
53 },
54 "orderRoutingFee": {
55 "value": 1.1,
56 "formattedValue": "string"
57 },
58 "sundayOpenTime": "string",
59 "openTime": "string",
60 "closeTime": "string",
61 "ssfName": "string",
62 "stockName": "string"
63 }
64 ]
65}
Was this page helpful?
Previous

Renew Access Token

Next
Built with

Response

ProductList
itemslist of objects