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

Get Product

POST
https://demo-d.tradovateapi.com/v1/markets/getproduct
POST
/v1/markets/getproduct
1const url = 'https://demo-d.tradovateapi.com/v1/markets/getproduct';
2const options = {
3 method: 'POST',
4 headers: {'Content-Type': 'application/json'},
5 body: '{"id":"string"}'
6};
7
8try {
9 const response = await fetch(url, options);
10 const data = await response.json();
11 console.log(data);
12} catch (error) {
13 console.error(error);
14}
200Successful
1{
2 "product": {
3 "name": "string",
4 "description": "string",
5 "tickSize": {
6 "value": 1.1,
7 "formattedValue": "string"
8 },
9 "valuePerPoint": {
10 "value": 1.1,
11 "formattedValue": "string"
12 },
13 "exchange": "string",
14 "group": "string",
15 "id": 1,
16 "months": "string",
17 "initialMargin": {
18 "value": 1.1,
19 "formattedValue": "string"
20 },
21 "maintenanceMargin": {
22 "value": 1.1,
23 "formattedValue": "string"
24 },
25 "dayMargin": {
26 "value": 1.1,
27 "formattedValue": "string"
28 },
29 "nightMargin": {
30 "value": 1.1,
31 "formattedValue": "string"
32 },
33 "clearingFee": {
34 "value": 1.1,
35 "formattedValue": "string"
36 },
37 "exchangeFee": {
38 "value": 1.1,
39 "formattedValue": "string"
40 },
41 "nfaFee": {
42 "value": 1.1,
43 "formattedValue": "string"
44 },
45 "brokerageFee": {
46 "value": 1.1,
47 "formattedValue": "string"
48 },
49 "commission": {
50 "value": 1.1,
51 "formattedValue": "string"
52 },
53 "orderRoutingFee": {
54 "value": 1.1,
55 "formattedValue": "string"
56 },
57 "sundayOpenTime": "string",
58 "openTime": "string",
59 "closeTime": "string",
60 "ssfName": "string",
61 "stockName": "string"
62 }
63}
Was this page helpful?
Previous

J WKS

Next
Built with

Request

This endpoint expects an object.
idstringRequired<=64 characters

Response

ProductDetails
productobject