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
      • GETContract Dependents
      • GETContract Find
      • GETContract Group Find
      • GETContract Group Item
      • GETContract Group Items
      • GETContract Group List
      • GETContract Group Suggest
      • GETContract Item
      • GETContract Items
      • GETContract L Dependents
      • GETContract Maturity Dependents
      • GETContract Maturity Item
      • GETContract Maturity Items
      • GETContract Maturity L Dependents
      • GETContract Suggest
      • GETCurrency Find
      • GETCurrency Item
      • GETCurrency Items
      • GETCurrency List
      • GETCurrency Rate Dependents
      • GETCurrency Rate Item
      • GETCurrency Rate Items
      • GETCurrency Rate L Dependents
      • GETCurrency Rate List
      • GETCurrency Suggest
      • GETExchange Find
      • GETExchange Item
      • GETExchange Items
      • GETExchange List
      • GETExchange Suggest
      • GETGet Event Products
      • POSTGet Options Chain
      • POSTGet Product Fee Params
      • GETKalshi Event Dependents
      • GETKalshi Event Find
      • GETKalshi Event Item
      • GETKalshi Event Items
      • GETKalshi Event L Dependents
      • GETKalshi Event List
      • GETKalshi Event Suggest
      • GETKalshi Market Dependents
      • GETKalshi Market Find
      • GETKalshi Market Item
      • GETKalshi Market Items
      • GETKalshi Market L Dependents
      • GETKalshi Market List
      • GETKalshi Market Suggest
      • GETKalshi Milestone Find
      • GETKalshi Milestone Item
      • GETKalshi Milestone Items
      • GETKalshi Milestone List
      • GETKalshi Milestone Suggest
      • GETKalshi Series Dependents
      • GETKalshi Series Find
      • GETKalshi Series Item
      • GETKalshi Series Items
      • GETKalshi Series L Dependents
      • GETKalshi Series List
      • GETKalshi Series Suggest
      • GETKalshi Structured Target Find
      • GETKalshi Structured Target Item
      • GETKalshi Structured Target Items
      • GETKalshi Structured Target List
      • GETKalshi Structured Target Suggest
      • GETProduct Dependents
      • GETProduct Find
      • GETProduct Item
      • GETProduct Items
      • GETProduct L Dependents
      • GETProduct List
      • GETProduct Session Dependents
      • GETProduct Session Item
      • GETProduct Session Items
      • GETProduct Session L Dependents
      • GETProduct Suggest
      • POSTRoll Contract
      • POSTRoll Contracts
      • GETSpread Definition Item
      • GETSpread Definition Items
      • POSTSubscribe Live Score
      • GETTrading Session Dependents
      • GETTrading Session Item
      • GETTrading Session Items
      • GETTrading Session L Dependents
      • POSTUnsubscribe Live Score
Support Center
LogoLogo
REST API EndpointsContract Library

Get Product Fee Params

POST
https://demo-d.tradovateapi.com/v1/contract/getproductfeeparams
POST
/v1/contract/getproductfeeparams
1const url = 'https://demo-d.tradovateapi.com/v1/contract/getproductfeeparams';
2const options = {
3 method: 'POST',
4 headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
5 body: '{"productIds":[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 "params": [
3 {
4 "productId": 1,
5 "clearingFee": 1.1,
6 "clearingCurrencyId": 1,
7 "exchangeFee": 1.1,
8 "exchangeCurrencyId": 1,
9 "nfaFee": 1.1,
10 "nfaCurrencyId": 1,
11 "brokerageFee": 1.1,
12 "brokerageCurrencyId": 1,
13 "ipFee": 1.1,
14 "ipCurrencyId": 1,
15 "commission": 1.1,
16 "commissionCurrencyId": 1,
17 "orderRoutingFee": 1.1,
18 "orderRoutingCurrencyId": 1,
19 "dayMargin": 1.1,
20 "nightMargin": 1.1,
21 "fullMargin": {
22 "initialMargin": 1.1,
23 "maintenanceMargin": 1.1,
24 "timestamp": "2024-01-15T09:30:00Z",
25 "id": 1
26 },
27 "commissionNotionalValueBPS": 1.1
28 }
29 ]
30}

Query the a product’s fee parameters.

Was this page helpful?
Previous

Kalshi Event Dependents

Next
Built with

Authentication

AuthorizationBearer

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

Request

This endpoint expects an object.
productIdslist of longsRequired

Response

ProductFeeParamsResponse
paramslist of objects