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

Fee Items

GET
https://demo-d.tradovateapi.com/v1/fee/items
GET
/v1/fee/items
1const url = 'https://demo-d.tradovateapi.com/v1/fee/items?ids=%5B1%5D';
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 {
3 "id": 1,
4 "exchangeId": 1,
5 "productId": 1,
6 "accountId": 1,
7 "tradovateSubscriptionPlanId": 1,
8 "clearingHouseId": 1,
9 "productType": "CommonStock",
10 "salesCode": "string",
11 "isMicro": true,
12 "clearingFee": 1.1,
13 "clearingCurrencyId": 1,
14 "exchangeFee": 1.1,
15 "exchangeCurrencyId": 1,
16 "nfaFee": 1.1,
17 "nfaCurrencyId": 1,
18 "brokerageFee": 1.1,
19 "brokerageCurrencyId": 1,
20 "ipFee": 1.1,
21 "ipCurrencyId": 1,
22 "commission": 1.1,
23 "commissionCurrencyId": 1,
24 "orderRoutingFee": 1.1,
25 "orderRoutingCurrencyId": 1,
26 "commissionMode": "CurrencyAmount"
27 }
28]

Fetches multiple Fee entities of id field

Was this page helpful?
Previous

Fee List

Next
Built with

Authentication

AuthorizationBearer

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

Query parameters

idslist of longsRequired

Response

Fee
idlong
exchangeIdlong
productIdlong
accountIdlong
tradovateSubscriptionPlanIdlong
clearingHouseIdlong
productTypeenum
CommonStock, Continuous, Cryptocurrency, Futures, MarketInternals, Options, Spread, Swap
salesCodestring<=64 characters
isMicroboolean
clearingFeedouble
clearingCurrencyIdlong
exchangeFeedouble
exchangeCurrencyIdlong
nfaFeedouble
nfaCurrencyIdlong
brokerageFeedouble
brokerageCurrencyIdlong
ipFeedouble

IP/TT Fee

ipCurrencyIdlong
commissiondouble
commissionCurrencyIdlong
orderRoutingFeedouble
orderRoutingCurrencyIdlong
commissionModeenum
CurrencyAmount, NotionalValueBPS
Allowed values: