Skip to content

GET /common/fiats

Returns a map of fiat currency codes to their details, including current price and display precision. No authentication required.

GET /common/fiats
Terminal window
curl https://api.nearpayments.io/oxapay/v1/common/fiats
{
"data": {
"USD": {
"symbol": "USD",
"name": "US Dollar",
"price": 1,
"display_precision": 2
},
"EUR": {
"symbol": "EUR",
"name": "Euro",
"price": 1.08,
"display_precision": 2
},
"GBP": {
"symbol": "GBP",
"name": "British Pound",
"price": 1.27,
"display_precision": 2
}
},
"message": "Operation completed successfully!",
"error": {},
"status": 200,
"version": "1.0.0"
}