MarketOverviewService
Get Currency Conversion Config
Get supported fiat and stablecoin display metadata with default English names, symbols, and fraction digits. Clients may localize presentation.
Request
curl --request GET \ \ --url 'https://api.testnet.polyester.com/v1/market/currency-conversion/config' \ --header 'Accept: */*'
Responses
{
"fiat": [
{
"code": "value",
"defaultEnglishName": "value",
"fractionDigits": 1,
"symbol": "BTC-USDT"
}
],
"stablecoins": [
{
"code": "value",
"defaultEnglishName": "value",
"fractionDigits": 1,
"symbol": "BTC-USDT"
}
]
}Uppercase currency or stablecoin code, such as EUR or USDT.
valueDefault English display name.
valueDefault display fraction digits, including zero for currencies such as JPY. This is a formatting default, not rate precision, token decimals, or cash rounding. Stablecoins use two display fraction digits.
1Representative local display symbol; multiple currencies may share a symbol. Uses the code when the selected local display data has no distinct visible symbol.
BTC-USDTUppercase currency or stablecoin code, such as EUR or USDT.
valueDefault English display name.
valueDefault display fraction digits, including zero for currencies such as JPY. This is a formatting default, not rate precision, token decimals, or cash rounding. Stablecoins use two display fraction digits.
1Representative local display symbol; multiple currencies may share a symbol. Uses the code when the selected local display data has no distinct visible symbol.
BTC-USDT| Key | Status | Error | When |
|---|---|---|---|
| unauthenticated | 401 | Unauthenticated | Authentication required. |
| permission-denied | 403 | Permission Denied | Permission denied. |
| invalid-argument | 400 | Invalid Argument | Invalid argument. |
| not-found | 404 | Not Found | Not found. |
| unavailable | 503 | Unavailable | Service unavailable. |