GET History/Get?key={key}&itemId={itemId}&dateFrom={dateFrom}&dateTo={dateTo}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| key | string |
Required |
|
| itemId | integer |
Required |
|
| dateFrom | date |
Required |
|
| dateTo | date |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of ExchangeHistoryVm| Name | Description | Type | Additional information |
|---|---|---|---|
| Buy | decimal number |
None. |
|
| Sell | decimal number |
None. |
|
| ModifiedOn | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Buy": 1.0,
"Sell": 1.0,
"ModifiedOn": "2025-11-16T22:47:19.741305+03:30"
},
{
"Buy": 1.0,
"Sell": 1.0,
"ModifiedOn": "2025-11-16T22:47:19.741305+03:30"
}
]
application/xml, text/xml
Sample:
<ArrayOfExchangeHistoryVm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NEX.Model">
<ExchangeHistoryVm>
<Buy>1</Buy>
<ModifiedOn>2025-11-16T22:47:19.741305+03:30</ModifiedOn>
<Sell>1</Sell>
</ExchangeHistoryVm>
<ExchangeHistoryVm>
<Buy>1</Buy>
<ModifiedOn>2025-11-16T22:47:19.741305+03:30</ModifiedOn>
<Sell>1</Sell>
</ExchangeHistoryVm>
</ArrayOfExchangeHistoryVm>