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

Evaluate Fill Fee

POST
https://demo-d.tradovateapi.com/v1/fee/evaluatefillfee
POST
/v1/fee/evaluatefillfee
1const url = 'https://demo-d.tradovateapi.com/v1/fee/evaluatefillfee';
2const options = {
3 method: 'POST',
4 headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
5 body: '{"productId":1}'
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 "clearingFee": 1.1,
3 "clearingCurrencyId": 1,
4 "exchangeFee": 1.1,
5 "exchangeCurrencyId": 1,
6 "nfaFee": 1.1,
7 "nfaCurrencyId": 1,
8 "brokerageFee": 1.1,
9 "brokerageCurrencyId": 1,
10 "ipFee": 1.1,
11 "ipCurrencyId": 1,
12 "commission": 1.1,
13 "commissionCurrencyId": 1,
14 "orderRoutingFee": 1.1,
15 "orderRoutingCurrencyId": 1,
16 "commissionNotionalValueBPS": 1.1,
17 "exchangeFeeId": 1,
18 "clearingFeeId": 1,
19 "nfaFeeId": 1,
20 "brokerageFeeId": 1,
21 "ipFeeId": 1,
22 "commissionFeeId": 1,
23 "orderRoutingFeeId": 1
24}
Was this page helpful?
Previous

Fee Item

Next
Built with

Authentication

AuthorizationBearer

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

Request

This endpoint expects an object.
productIdlongRequired
accountIdlongOptional

Response

EvaluateFillFeeResponse
clearingFeedouble
clearingCurrencyIdlong
exchangeFeedouble
exchangeCurrencyIdlong
nfaFeedouble
nfaCurrencyIdlong
brokerageFeedouble
brokerageCurrencyIdlong
ipFeedouble

IP/TT Fee

ipCurrencyIdlong
commissiondouble
commissionCurrencyIdlong
orderRoutingFeedouble
orderRoutingCurrencyIdlong
commissionNotionalValueBPSdouble
exchangeFeeIdlong
clearingFeeIdlong
nfaFeeIdlong
brokerageFeeIdlong
ipFeeIdlong
commissionFeeIdlong
orderRoutingFeeIdlong