GET /common/fiats
Returns a map of fiat currency codes to their details, including current price and display precision. No authentication required.
Request
Section titled “Request”GET /common/fiatsExample
Section titled “Example”curl https://api.nearpayments.io/oxapay/v1/common/fiatsResponse
Section titled “Response”{ "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"}