Get rates for a base/target pair effective from a specific time
Returns the latest available rates for the pair (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.
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.22
- ●
changed the pattern of the
pathrequest parameterbasefrom^[A-Z]{3}$to^[A-Z]{3,4}$request-parameter-pattern-changed
- ●
changed the pattern of the
pathrequest parametertargetfrom^[A-Z]{3}$to^[A-Z]{3,4}$request-parameter-pattern-changed
- ○
the
//response's property pattern was changed from^[A-Z]{3}$to^[A-Z]{3,4}$for the statusresponse-property-pattern-changed
- ○
the
//response's property pattern was changed from^[A-Z]{3}$to^[A-Z]{3,4}$for the statusresponse-property-pattern-changed
- ●