GET feeds/HistoryData?symbol={symbol}&resolution={resolution}&from={from}&to={to}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| symbol | string |
Required |
|
| resolution | ResolutionTypes |
Required |
|
| from | string |
Required |
|
| to | string |
Default value is |
Body Parameters
None.
Response Information
Resource Description
BarChartHistoryData| Name | Description | Type | Additional information |
|---|---|---|---|
| status | RespStatusEntity |
None. |
|
| results | Collection of HistoryDataEntity |
None. |
Response Formats
application/json, text/json
Sample:
{
"status": {
"code": 1,
"message": "sample string 2"
},
"results": [
{
"symbol": "sample string 1",
"timestamp": "2025-12-05T20:03:44.5281818-08:00",
"tradingDay": "2025-12-05T20:03:44.5281818-08:00",
"open": 4.1,
"high": 5.1,
"low": 6.1,
"close": 7.1,
"volume": 8,
"openInterest": "sample string 9"
},
{
"symbol": "sample string 1",
"timestamp": "2025-12-05T20:03:44.5281818-08:00",
"tradingDay": "2025-12-05T20:03:44.5281818-08:00",
"open": 4.1,
"high": 5.1,
"low": 6.1,
"close": 7.1,
"volume": 8,
"openInterest": "sample string 9"
}
]
}
application/xml, text/xml
Sample:
<BarChartHistoryData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DatafeedServer.Entities">
<results>
<HistoryDataEntity>
<close>7.1</close>
<high>5.1</high>
<low>6.1</low>
<open>4.1</open>
<openInterest>sample string 9</openInterest>
<symbol>sample string 1</symbol>
<timestamp>2025-12-05T20:03:44.5281818-08:00</timestamp>
<tradingDay>2025-12-05T20:03:44.5281818-08:00</tradingDay>
<volume>8</volume>
</HistoryDataEntity>
<HistoryDataEntity>
<close>7.1</close>
<high>5.1</high>
<low>6.1</low>
<open>4.1</open>
<openInterest>sample string 9</openInterest>
<symbol>sample string 1</symbol>
<timestamp>2025-12-05T20:03:44.5281818-08:00</timestamp>
<tradingDay>2025-12-05T20:03:44.5281818-08:00</tradingDay>
<volume>8</volume>
</HistoryDataEntity>
</results>
<status>
<code>1</code>
<message>sample string 2</message>
</status>
</BarChartHistoryData>