Currency Exchange API
Provides information about supported currencies
Bets APICashout API
Active Currencies Endpoint
Authorizations
HTTPRequired
JWT Authorization header using the Bearer scheme. Example: "Authorization: Bearer {token}"
Query parameters
typeinteger · enumOptionalPossible values:
1- Fiat2- Crypto3- Custom
Responses
200
OK
symbolstring · nullableOptional
typeinteger · enumOptionalPossible values:
1- Fiat2- Crypto3- Custom
precisioninteger · int32Optional
401
Unauthorized
403
Forbidden
429
Too many requests
500
Internal Server Error
get/api/CurrencyExchange/active-currencies
GET /api/CurrencyExchange/active-currencies HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
[
{
"symbol": "text",
"type": 1,
"precision": 1
}
]Currency Precision Endpoint
Authorizations
HTTPRequired
JWT Authorization header using the Bearer scheme. Example: "Authorization: Bearer {token}"
Query parameters
symbolstringOptional
Currency ticker symbol
Responses
200
OK
precisioninteger · int32Optional
401
Unauthorized
403
Forbidden
429
Too many requests
500
Internal Server Error
get/api/CurrencyExchange/currency-precision
GET /api/CurrencyExchange/currency-precision HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"precision": 1
}Last updated