Rates

Get rates for a base currency effective from a specific time

Returns the latest available rates with the given base (as-of as_of). If source and/or type are omitted, results may include multiple sources/types.

get/v1/rates/{base}

Path parameters

basestring required

ISO 4217 currency code or 4-letter crypto/stablecoin symbol.

Example:USD

Query parameters

as_ofstring date-time

RFC3339 timestamp; defaults to now.

sourcestring
Example:BCV
type'MID' | 'BUY' | 'SELL'
Example:MID
limitinteger

Max items to return; defaults to 100 (server may clamp).

offsetinteger

Offset into result set; defaults to 0.

Response

Paginated results

totalinteger required

Example response

{
  "results": [
    {
      "as_of": "2026-01-13T00:00:00Z",
      "fetched_at": "2026-01-13T00:02:10Z",
      "base": "USD",
      "target": "VES",
      "rate_type": "MID",
      "source": "BCV",
      "rate": 330.3751
    }
  ],
  "total": 1
}

Changes

Changed in 1 of the 2 revisions of this API.12

  • 571cbe23ef7b12See the full diff
    • changed the pattern of the path request parameter base from ^[A-Z]{3}$ to ^[A-Z]{3,4}$

      request-parameter-pattern-changed

    • the results/items/base response's property pattern was changed from ^[A-Z]{3}$ to ^[A-Z]{3,4}$ for the status 200

      response-property-pattern-changed

    • the results/items/target response's property pattern was changed from ^[A-Z]{3}$ to ^[A-Z]{3,4}$ for the status 200

      response-property-pattern-changed