Price

Get latest prices for passed parameters

get

/api/v1/price

Authorizations
Query parameters
fromstringrequired

tickers 'from' or token contract address separated by comma

tostringrequired

tickers 'to' or token contract address separated by comma

Responses
curl -L \
  --url 'https://market-data.nownodes.io/api/v1/price?from=text&to=text' \
  --header 'x-api-key: ApiKeyAuth <apiKey>'
{
  "code": "text",
  "result": [
    {
      "quotes": {
        "rate": 1,
        "to_currency": "text"
      },
      "from_currency": "text"
    }
  ],
  "error": "text"
}