Skip to content

sidebar: order: 13

GET /api/quantis/v2/rates/international/

Returns exchange rates for approximately 170 world currencies relative to USD, sourced from openexchangerates.

MethodGET
URLhttps://app.vzla.io/api/quantis/v2/rates/international/
AuthenticationAuthorization: Bearer vzlaio_...
ParametersNone

Request

Terminal window
curl --request GET \
--url 'https://app.vzla.io/api/quantis/v2/rates/international/' \
--header 'Authorization: Bearer vzlaio_YOUR_TOKEN_HERE'

sidebar: order: 13

Response

data

FieldTypeDescription
timestampstring (ISO 8601 datetime)When this data was last fetched from openexchangerates
basestringAlways "USD" — all rates are relative to 1 USD
ratesobjectMap of currency code → exchange rate (number)

Rate values are plain numbers, not strings. The rates object contains approximately 170 currency codes.

meta

FieldTypeDescription
sourcestringAlways "openexchangerates"

sidebar: order: 13

Response headers

HeaderDescription
X-API-Version2.0
X-Quota-LimitYour monthly request limit
X-Quota-RemainingRequests remaining this month
X-Quota-ResetISO 8601 timestamp of next quota reset
X-Request-IDUUID for this request

sidebar: order: 13

Example response

{
"data": {
"timestamp": "2026-05-06T19:46:46.339127+00:00",
"base": "USD",
"rates": {
"AED": 3.67315,
"ARS": 1387.7501,
"BRL": 4.9412,
"CLP": 896.65,
"COP": 3713.473403,
"EUR": 0.851096,
"GBP": 0.735602,
"JPY": 144.886,
"MXN": 19.5831,
"PEN": 3.65965
}
},
"meta": {
"source": "openexchangerates"
}
}

Only a representative subset of the ~170 currencies is shown above.


sidebar: order: 13

HTTP status codes

CodeMeaning
200 OKSuccess.
401 UnauthorizedMissing or invalid token.
405 Method Not AllowedOnly GET is supported.
429 Too Many RequestsMonthly quota exhausted.
500 Internal Server ErrorServer error. Retry after a short delay.

401 — no Authorization header

{
"error": {
"code": "auth_missing",
"message": "Authentication credentials were not provided"
}
}

401 — invalid token

{
"error": {
"code": "auth_token_unknown",
"message": "Invalid token format"
}
}

429

{
"error": {
"code": "quota_exceeded",
"message": "Monthly quota limit exceeded.",
"details": {
"reset_at": "2026-06-01T00:00:00Z"
}
}
}
Complete documentation as plain text for AI tools (llms.txt)