# Supported Fiat Currencies

This endpoint allows you to retrieve a list of supported fiat currencies, with details including currency code (e.g., USD, AUD), symbol, name, price, and display precision. Merchants can use this data to create invoices in fiat currencies.

## GET /common/fiats

>

```json
{"openapi":"3.0.0","info":{"title":"Commons","version":"1.0.0"},"servers":[{"url":"https://api.oxapay.com/v1"}],"security":[],"paths":{"/common/fiats":{"get":{"operationId":"fiats","responses":{"200":{"description":"Successful operation","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"object","description":"A dynamic object where each key is a currency symbol with price info.","additionalProperties":{"type":"object","properties":{"symbol":{"type":"string","description":"The symbol of the currency (e.g., BTC, ETH)."},"name":{"type":"string","description":"The name of the currency (e.g., Bitcoin, Ethereum)."},"price":{"type":"number","format":"decimal","description":"The current price of the currency."},"display_precision":{"type":"number","format":"decimal","description":"Decimal precision used when displaying the currency."}}}},"message":{"type":"string","description":"A message containing additional information about the result of the request."},"error":{"type":"object","description":"An object that provides details about any errors that occurred.","nullable":true,"properties":{"type":{"type":"string","description":"Type of the error"},"key":{"type":"string","description":"Key related to the error"},"message":{"type":"string","description":"Error message"}}},"status":{"type":"integer","description":"The status of the request response. Typically provided as a numeric code (e.g., 200 for success or other codes for errors)."},"version":{"type":"string","description":"The version of the API being used."}}}}}}},"tags":["Fiats"]}}}}
```
