Market data

get

Get markets (symbols) historical prices that match passed parameters

Authorizations
Query parameters
fromstring · enumRequired

tickers 'from' or token contract address separated by comma

Possible values:
tostring · enumRequired

tickers 'to' or token contract address separated by comma

Possible values:
period_fromstring · enumOptional

market data from a specific time

Possible values:
period_tostring · enumOptional

market data to a specific time

Possible values:
Responses
200
Result data
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"
}