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
      • POSTEvaluate Fill Fee
      • GETFee Item
      • GETFee Items
      • GETFee List
      • GETMarket Data Subscription Exchange Scope Find
      • GETMarket Data Subscription Exchange Scope Item
      • GETMarket Data Subscription Exchange Scope Items
      • GETMarket Data Subscription Exchange Scope List
      • GETMarket Data Subscription Exchange Scope Suggest
      • GETMarket Data Subscription Plan Find
      • GETMarket Data Subscription Plan Item
      • GETMarket Data Subscription Plan Items
      • GETMarket Data Subscription Plan List
      • GETMarket Data Subscription Plan Suggest
      • GETTradovate Subscription Plan Find
      • GETTradovate Subscription Plan Item
      • GETTradovate Subscription Plan Items
      • GETTradovate Subscription Plan List
      • GETTradovate Subscription Plan Suggest
Support Center
LogoLogo
REST API EndpointsFees

Market Data Subscription Plan Item

GET
https://demo-d.tradovateapi.com/v1/marketDataSubscriptionPlan/item
GET
/v1/marketDataSubscriptionPlan/item
1const url = 'https://demo-d.tradovateapi.com/v1/marketDataSubscriptionPlan/item?id=1';
2const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
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 "name": "string",
3 "title": "string",
4 "price": 1.1,
5 "exchangeScopeId": 1,
6 "dataType": "DOM",
7 "professional": "Either",
8 "id": 1,
9 "startDate": {
10 "year": 1,
11 "month": 1,
12 "day": 1
13 },
14 "discontinuedDate": {
15 "year": 1,
16 "month": 1,
17 "day": 1
18 },
19 "tooltip": "string"
20}

Fetches MarketDataSubscriptionPlan entity by id field

Was this page helpful?
Previous

Market Data Subscription Plan Items

Next
Built with

Authentication

AuthorizationBearer

Bearer authentication of the form Bearer <token>, where token is your auth token.

Query parameters

idlongRequired

Response

MarketDataSubscriptionPlan
namestring<=64 characters
titlestring<=64 characters
pricedouble
exchangeScopeIdlong
dataTypeenum
DOM, Top
Allowed values:
professionalenum
Either, NonProfessional, Professional
Allowed values:
idlong
startDateobject
discontinuedDateobject
tooltipstring<=8192 characters