GET History/Get?key={key}&itemId={itemId}&dateFrom={dateFrom}&dateTo={dateTo}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
key

string

Required

itemId

integer

Required

dateFrom

date

Required

dateTo

date

Required

Body Parameters

None.

Response Information

Resource Description

Collection of ExchangeHistoryVm
NameDescriptionTypeAdditional 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-09-09T17:14:51.0652393+03:30"
  },
  {
    "Buy": 1.0,
    "Sell": 1.0,
    "ModifiedOn": "2025-09-09T17:14:51.0652393+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-09-09T17:14:51.0652393+03:30</ModifiedOn>
    <Sell>1</Sell>
  </ExchangeHistoryVm>
  <ExchangeHistoryVm>
    <Buy>1</Buy>
    <ModifiedOn>2025-09-09T17:14:51.0652393+03:30</ModifiedOn>
    <Sell>1</Sell>
  </ExchangeHistoryVm>
</ArrayOfExchangeHistoryVm>