Rates

get

get latest currencies rates

Authorizations
Query parameters
modestring · enumOptional

type of result view (raw or aggregated)

Possible values:
basestring[]Optional

list of base currencies codes or coin market cap ids

Example: ["1027","btc","bnb"]
quotestring[]OptionalExample: ["usd","2806","eur"]
pagenumberOptional

pagination number

pageSizenumberOptional

limit number of rows per page

Responses
200
Result data
application/json
Responseone of
or
get
GET /v1/rates HTTP/1.1
Host: fiat-rates.nownodes.io
api-key: YOUR_API_KEY
Accept: */*
{
  "pagination": {
    "page": "text",
    "pageCount": "text",
    "pageSize": "text"
  },
  "data": [
    {
      "id": "text",
      "code": "text",
      "name": "text",
      "rates": {
        "USD": 22966.879836294986,
        "AUD": 32370.071646390224
      }
    }
  ]
}