Skip to main content
GET
/
currencies
Get the complete list of supported fiat currencies
curl --request GET \
  --url https://openapiv1.coinstats.app/currencies \
  --header 'X-API-KEY: <api-key>'
{
  "result": {
    "USD": 1,
    "AUD": 1.5454754068661494,
    "BGN": 1.6841890498764196,
    "BRL": 5.439300703523657,
    "CAD": 1.385009899367217,
    "CHF": 0.8062450125737061,
    "CNY": 7.152897128536489,
    "CZK": 21.155291093157576
  }
}
1 credit per request
  • All supported fiat currencies
  • Currency codes and exchange rates
  • To Convert cryptocurrency values to fiat
  • To Display fiat currency information
  • In other API endpoints

Authorizations

X-API-KEY
string
header
required

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

Response

Get currencies list

result
object
required

Full list of exchange rates for various currencies relative to USD (USD = 1)

Example:
{
"USD": 1,
"AUD": 1.5454754068661494,
"BGN": 1.6841890498764196,
"BRL": 5.439300703523657,
"CAD": 1.385009899367217,
"CHF": 0.8062450125737061,
"CNY": 7.152897128536489,
"CZK": 21.155291093157576
}
I