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 Event Products

GET
https://demo-d.tradovateapi.com/v1/contract/geteventproducts
GET
/v1/contract/geteventproducts
1const url = 'https://demo-d.tradovateapi.com/v1/contract/geteventproducts';
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 "products": [
3 {
4 "ecProduct": {
5 "name": "string",
6 "currencyId": 1,
7 "productType": "CommonStock",
8 "description": "string",
9 "exchangeId": 1,
10 "contractGroupId": 1,
11 "status": "Inactive",
12 "valuePerPoint": 1.1,
13 "priceFormatType": "Decimal",
14 "priceFormat": 1,
15 "tickSize": 1.1,
16 "id": 1,
17 "riskDiscountContractGroupId": 1,
18 "months": "string",
19 "isSecured": true
20 },
21 "futuresProduct": {
22 "name": "string",
23 "currencyId": 1,
24 "productType": "CommonStock",
25 "description": "string",
26 "exchangeId": 1,
27 "contractGroupId": 1,
28 "status": "Inactive",
29 "valuePerPoint": 1.1,
30 "priceFormatType": "Decimal",
31 "priceFormat": 1,
32 "tickSize": 1.1,
33 "id": 1,
34 "riskDiscountContractGroupId": 1,
35 "months": "string",
36 "isSecured": true
37 },
38 "frontMaturity": {
39 "productId": 1,
40 "expirationMonth": 1,
41 "expirationDate": "2024-01-15T09:30:00Z",
42 "isFront": true,
43 "id": 1,
44 "firstIntentDate": "2024-01-15T09:30:00Z",
45 "underlyingId": 1,
46 "kalshiEventId": 1
47 },
48 "strikes": [
49 {
50 "name": "string",
51 "contractMaturityId": 1,
52 "timestamp": "2024-01-15T09:30:00Z",
53 "id": 1
54 }
55 ]
56 }
57 ],
58 "errorText": "string"
59}
Was this page helpful?
Previous

Get Options Chain

Next
Built with

Authentication

AuthorizationBearer

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

Response

EventProductsResponse
productslist of objects
errorTextstring<=8192 characters

Non-empty if the request failed