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.
Path parameters
ISO 4217 currency code or 4-letter crypto/stablecoin symbol.
Query parameters
RFC3339 timestamp; defaults to now.
Max items to return; defaults to 100 (server may clamp).
Offset into result set; defaults to 0.
Response
Paginated results
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
- ●
changed the pattern of the
pathrequest parameterbasefrom^[A-Z]{3}$to^[A-Z]{3,4}$request-parameter-pattern-changed
- ○
the
results/items/baseresponse's property pattern was changed from^[A-Z]{3}$to^[A-Z]{3,4}$for the status200response-property-pattern-changed
- ○
the
results/items/targetresponse's property pattern was changed from^[A-Z]{3}$to^[A-Z]{3,4}$for the status200response-property-pattern-changed
- ●