Skip to content

sidebar: order: 14

GET /api/quantis/v2/rates/crypto/

Returns USD prices for nine major cryptocurrencies, sourced from CoinMarketCap.

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

Request

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

sidebar: order: 14

Response

data

FieldTypeDescription
timestampstring (ISO 8601 datetime)When this snapshot was last fetched from CoinMarketCap
ratesobjectMap of ticker symbol → USD price string

data.rates

Supported symbols: BTC, ETH, USDT, XRP, BNB, SOL, USDC, DOGE, TRX.

Each value is a string representing the current USD price for that cryptocurrency.

meta

FieldTypeDescription
sourcestringAlways "CoinMarketCap"
currency_quotestringAlways "USD"

sidebar: order: 14

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: 14

Example response

{
"data": {
"timestamp": "2026-05-06T20:00:02.045590+00:00",
"rates": {
"BTC": "81466.183799",
"XRP": "1.42773",
"DOGE": "0.112865",
"USDT": "0.999785",
"ETH": "2348.375715",
"BNB": "650.482695",
"TRX": "0.346772",
"USDC": "0.99971",
"SOL": "89.198836"
}
},
"meta": {
"source": "CoinMarketCap",
"currency_quote": "USD"
}
}

sidebar: order: 14

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)