Currency Exchange API
Provides information about supported currencies
Currency Exchange API provides information about supported currencies and their precision to be used in Bet Placement and cashout process.
Bets APICashout APIActive Currencies Endpoint
Gets the list of supported currencies by type.
The endpoint is rate-limited to 10 requests per 1 minute.
JWT Authorization header using the Bearer scheme. Example: "Authorization: Bearer {token}"
Currency type to filter (if null - returns all active currencies for all types)
1 = Fiat
2 = Crypto
3 = Custom
1 = Fiat
2 = Crypto
3 = Custom
OK
Unauthorized
Forbidden
Too many requests
Internal Server Error
GET /api/CurrencyExchange/active-currencies HTTP/1.1
Host:
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
[
{
"symbol": "text",
"type": 1,
"precision": 1
}
]Currency Precision Endpoint
Gets precision value of the specified currency.
The endpoint is rate-limited to 1 request per 1 second.
JWT Authorization header using the Bearer scheme. Example: "Authorization: Bearer {token}"
Currency ticker symbol
OK
Unauthorized
Forbidden
Too many requests
Internal Server Error
GET /api/CurrencyExchange/currency-precision HTTP/1.1
Host:
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"precision": 1
}Last updated