> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://partner.ninjatrader.com/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://partner.ninjatrader.com/_mcp/server.

# Get Product Fee Params

POST https://live.tradovateapi.com/v1/contract/getproductfeeparams
Content-Type: application/json

### Query the a product's fee parameters.

Reference: https://partner.ninjatrader.com/eval/api/rest-api-endpoints/contract-library/get-product-fee-params

## OpenAPI Specification

```yaml
openapi: 3.1.0
info:
  title: eval
  version: 1.0.0
paths:
  /contract/getproductfeeparams:
    post:
      operationId: get-product-fee-params
      summary: Get Product Fee Params
      description: '### Query the a product''s fee parameters.'
      tags:
        - subpackage_contractLibrary
      parameters:
        - name: Authorization
          in: header
          description: Bearer authentication
          required: true
          schema:
            type: string
      responses:
        '200':
          description: ProductFeeParamsResponse
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProductFeeParamsResponse'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GetProductFeeParams'
servers:
  - url: https://live.tradovateapi.com/v1
    description: https://live.tradovateapi.com/v1
components:
  schemas:
    GetProductFeeParams:
      type: object
      properties:
        productIds:
          type: array
          items:
            type: integer
            format: int64
      required:
        - productIds
      title: GetProductFeeParams
    ProductMargin:
      type: object
      properties:
        id:
          type: integer
          format: int64
        initialMargin:
          type: number
          format: double
        maintenanceMargin:
          type: number
          format: double
        timestamp:
          type: string
          format: date-time
      required:
        - initialMargin
        - maintenanceMargin
        - timestamp
      title: ProductMargin
    ProductFeeParams:
      type: object
      properties:
        clearingFee:
          type: number
          format: double
        clearingCurrencyId:
          type: integer
          format: int64
        exchangeFee:
          type: number
          format: double
        exchangeCurrencyId:
          type: integer
          format: int64
        nfaFee:
          type: number
          format: double
        nfaCurrencyId:
          type: integer
          format: int64
        brokerageFee:
          type: number
          format: double
        brokerageCurrencyId:
          type: integer
          format: int64
        ipFee:
          type: number
          format: double
          description: IP/TT Fee
        ipCurrencyId:
          type: integer
          format: int64
        commission:
          type: number
          format: double
        commissionCurrencyId:
          type: integer
          format: int64
        orderRoutingFee:
          type: number
          format: double
        orderRoutingCurrencyId:
          type: integer
          format: int64
        productId:
          type: integer
          format: int64
        dayMargin:
          type: number
          format: double
        nightMargin:
          type: number
          format: double
        fullMargin:
          $ref: '#/components/schemas/ProductMargin'
        commissionNotionalValueBPS:
          type: number
          format: double
        exchangeFeeNotionalValueBPS:
          type: number
          format: double
      required:
        - productId
      title: ProductFeeParams
    ProductFeeParamsResponse:
      type: object
      properties:
        params:
          type: array
          items:
            $ref: '#/components/schemas/ProductFeeParams'
      required:
        - params
      title: ProductFeeParamsResponse
  securitySchemes:
    bearer_access_token:
      type: http
      scheme: bearer

```

## Examples



**Request**

```json
{
  "productIds": [
    1
  ]
}
```

**Response**

```json
{
  "params": [
    {
      "productId": 1,
      "clearingFee": 1.1,
      "clearingCurrencyId": 1,
      "exchangeFee": 1.1,
      "exchangeCurrencyId": 1,
      "nfaFee": 1.1,
      "nfaCurrencyId": 1,
      "brokerageFee": 1.1,
      "brokerageCurrencyId": 1,
      "ipFee": 1.1,
      "ipCurrencyId": 1,
      "commission": 1.1,
      "commissionCurrencyId": 1,
      "orderRoutingFee": 1.1,
      "orderRoutingCurrencyId": 1,
      "dayMargin": 1.1,
      "nightMargin": 1.1,
      "fullMargin": {
        "initialMargin": 1.1,
        "maintenanceMargin": 1.1,
        "timestamp": "2024-01-15T09:30:00Z",
        "id": 1
      },
      "commissionNotionalValueBPS": 1.1,
      "exchangeFeeNotionalValueBPS": 1.1
    }
  ]
}
```

**SDK Code**

```python
import requests

url = "https://live.tradovateapi.com/v1/contract/getproductfeeparams"

payload = { "productIds": [1] }
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.json())
```

```javascript
const url = 'https://live.tradovateapi.com/v1/contract/getproductfeeparams';
const options = {
  method: 'POST',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: '{"productIds":[1]}'
};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go
package main

import (
	"fmt"
	"strings"
	"net/http"
	"io"
)

func main() {

	url := "https://live.tradovateapi.com/v1/contract/getproductfeeparams"

	payload := strings.NewReader("{\n  \"productIds\": [\n    1\n  ]\n}")

	req, _ := http.NewRequest("POST", url, payload)

	req.Header.Add("Authorization", "Bearer <token>")
	req.Header.Add("Content-Type", "application/json")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby
require 'uri'
require 'net/http'

url = URI("https://live.tradovateapi.com/v1/contract/getproductfeeparams")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n  \"productIds\": [\n    1\n  ]\n}"

response = http.request(request)
puts response.read_body
```

```java
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.post("https://live.tradovateapi.com/v1/contract/getproductfeeparams")
  .header("Authorization", "Bearer <token>")
  .header("Content-Type", "application/json")
  .body("{\n  \"productIds\": [\n    1\n  ]\n}")
  .asString();
```

```php
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('POST', 'https://live.tradovateapi.com/v1/contract/getproductfeeparams', [
  'body' => '{
  "productIds": [
    1
  ]
}',
  'headers' => [
    'Authorization' => 'Bearer <token>',
    'Content-Type' => 'application/json',
  ],
]);

echo $response->getBody();
```

```csharp
using RestSharp;

var client = new RestClient("https://live.tradovateapi.com/v1/contract/getproductfeeparams");
var request = new RestRequest(Method.POST);
request.AddHeader("Authorization", "Bearer <token>");
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "{\n  \"productIds\": [\n    1\n  ]\n}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift
import Foundation

let headers = [
  "Authorization": "Bearer <token>",
  "Content-Type": "application/json"
]
let parameters = ["productIds": [1]] as [String : Any]

let postData = JSONSerialization.data(withJSONObject: parameters, options: [])

let request = NSMutableURLRequest(url: NSURL(string: "https://live.tradovateapi.com/v1/contract/getproductfeeparams")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "POST"
request.allHTTPHeaderFields = headers
request.httpBody = postData as Data

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```