Daily Ticker Summary (OHLC)
GET
/v1/open-close/crypto/{from}/{to}/{date}
Retrieve the opening and closing trades for a specific crypto pair on a given date. This endpoint provides essential daily pricing details, enabling users to evaluate performance, conduct historical analysis, and gain insights into trading activity.
Use Cases: Daily performance analysis, historical data collection, portfolio tracking.
Path Parameters
from
string
required
The "from" symbol of the pair.
to
string
required
The "to" symbol of the pair.
date
string
required
The date of the requested open/close in the format YYYY-MM-DD.
Query Parameters
adjusted
boolean
Whether or not the results are adjusted for splits. By default, results are adjusted.
Set this to false to get results that are NOT adjusted for splits.
Response Attributes
close
number
The close price for the symbol in the given time period.
closingTrades
array (object)
An array of results containing the requested data.
c
array (integer)
A list of condition codes.
i
string
The Trade ID which uniquely identifies a trade. These are unique per
combination of ticker, exchange, and TRF. For example: A trade for AAPL
executed on NYSE and a trade for AAPL executed on NASDAQ could potentially
have the same Trade ID.
p
number
The price of the trade. This is the actual dollar value per whole share of
this trade. A trade of 100 shares with a price of $2.00 would be worth a
total dollar value of $200.00.
s
number
The size of a trade (also known as volume).
t
integer
The Unix millisecond timestamp for the start of the aggregate window.
x
integer
The exchange that this crypto trade happened on.
See Exchanges for a mapping of exchanges to IDs.
day
string
The date requested.
isUTC
boolean
Whether or not the timestamps are in UTC timezone.
open
number
The open price for the symbol in the given time period.
openTrades
array (object)
An array of results containing the requested data.
c
array (integer)
A list of condition codes.
i
string
The Trade ID which uniquely identifies a trade. These are unique per
combination of ticker, exchange, and TRF. For example: A trade for AAPL
executed on NYSE and a trade for AAPL executed on NASDAQ could potentially
have the same Trade ID.
p
number
The price of the trade. This is the actual dollar value per whole share of
this trade. A trade of 100 shares with a price of $2.00 would be worth a
total dollar value of $200.00.
s
number
The size of a trade (also known as volume).
t
integer
The Unix millisecond timestamp for the start of the aggregate window.
x
integer
The exchange that this crypto trade happened on.
See Exchanges for a mapping of exchanges to IDs.
symbol
string
The symbol pair that was evaluated from the request.