v1

latestOpenAPI 3.1.02026-07-26294215839.4 KB
Public API

Get currency conversion rates

Returns a snapshot of currency conversion rates for the specified base currency, keyed by ISO 4217 currency code. Rate map keys match the code field from GET /api/v1/meta/currency/types. Timestamps are ISO 8601 UTC with a Z offset.

OAuth Scopes: meta

get/api/v1/meta/currency-conversions

Query parameters

baseCurrencystring

ISO 4217 base currency code (e.g. USD, EUR). Defaults to USD when omitted.

Response

Currency conversion rates retrieved successfully

baseCurrencystring

ISO 4217 base currency code

lastUpdatedstring date-time

ISO 8601 UTC timestamp of the last rate update

nextUpdatestring date-time

ISO 8601 UTC timestamp of the next scheduled rate update

ratesobject

Map of ISO 4217 currency codes to numeric conversion rates relative to the base currency

Example response

{
  "baseCurrency": "USD",
  "lastUpdated": "2026-04-07T12:00:00Z",
  "nextUpdate": "2026-04-08T12:00:00Z"
}