GET
/
fiats
Get detailed information about fiat currencies
curl --request GET \
  --url https://openapiv1.coinstats.app/fiats \
  --header 'X-API-KEY: <api-key>'
[
  {
    "name": "USD",
    "rate": 1,
    "symbol": "$",
    "imageUrl": "https://static.coinstats.app/flags/USD_r.png"
  }
]
1 credit per request
  • Complete list of supported fiat currencies
  • Current exchange rates
  • Currency symbols and names
  • Associated images/icons
  • Convert cryptocurrency values to fiat
  • Display fiat currency information
  • Access currency metadata

Authorizations

X-API-KEY
string
header
required

API key needed to access the endpoints. Example: 'demo-api-key'

Response

Get Fiat Currencies

name
string
required

Name of the currency

Example:

"USD"

rate
number
required

Current exchange rate against USD (1 USD = rate)

Example:

1

symbol
string
required

Currency symbol

Example:

"$"

imageUrl
string
required

URL to the currency flag or icon image

Example:

"https://static.coinstats.app/flags/USD_r.png"