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
      • GETAdmin Alert Find
      • GETAdmin Alert Item
      • GETAdmin Alert Items
      • GETAdmin Alert List
      • GETAdmin Alert Suggest
      • GETClearing House Find
      • GETClearing House Item
      • GETClearing House Items
      • GETClearing House List
      • GETClearing House Suggest
      • GETClient App Find
      • GETClient App Item
      • GETClient App Items
      • GETClient App List
      • GETClient App Suggest
      • GETEntitlement Item
      • GETEntitlement Items
      • GETEntitlement List
      • GETOrder Strategy Type Find
      • GETOrder Strategy Type Item
      • GETOrder Strategy Type Items
      • GETOrder Strategy Type List
      • GETOrder Strategy Type Suggest
      • GETProperty Find
      • GETProperty Item
      • GETProperty Items
      • GETProperty List
      • GETProperty Suggest
Support Center
LogoLogo
REST API EndpointsConfiguration

Property Items

GET
https://demo-d.tradovateapi.com/v1/property/items
GET
/v1/property/items
1const url = 'https://demo-d.tradovateapi.com/v1/property/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 "name": "string",
4 "propertyType": "Boolean",
5 "id": 1,
6 "enumOptions": "string",
7 "defaultValue": "string"
8 }
9]

Fetches multiple Property entities of id field

Was this page helpful?
Previous

Property 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

Property
namestring<=64 characters
propertyTypeenum
Boolean, Enum, Integer, String
Allowed values:
idlong
enumOptionsstring<=8192 characters
defaultValuestring<=8192 characters