Market data
get
Get markets (symbols) historical prices that match passed parameters
Authorizations
Query parameters
fromstring · enumRequiredPossible values:
tickers 'from' or token contract address separated by comma
tostring · enumRequiredPossible values:
tickers 'to' or token contract address separated by comma
period_fromstring · enumOptionalPossible values:
market data from a specific time
period_tostring · enumOptionalPossible values:
market data to a specific time
Responses
200
Result data
application/json
400
Wrong input data
application/json
401
Authorization error
500
Internal server error
application/json
get
GET /api/v1/market-data HTTP/1.1
Host: market-data.nownodes.io
api-key: YOUR_API_KEY
Accept: */*
{
"code": "text",
"result": [
{
"to_currency": "text",
"from_currency": "text",
"rate_change": [
{
"d": "2022-07-13T02:41:59.559Z",
"r": 1
}
]
}
],
"error": "text"
}