v2

latestOpenAPI 3.0.3raw.githubusercontent.com2026-01-26587.0 KB
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
}