The coin fiat prices endpoint provides real-time cryptocurrency prices in all available fiat currencies, including USD, EUR, GBP, and more. These fiat currencies act as reference currencies in our system, forming the basis for conversions. To learn more about how reference currencies work, see our reference currencies endpoint.
https://api.coinranking.com/v2/coin/:uuid/fiat-prices
Parameter | Description |
---|---|
uuid String | UUID of the coin you need the price. |
jsonHTTP/1.1 200 OK
{
"status": "success",
"data": {
"prices": [
{
"referenceCurrencyUuid": "cYkSLiOlL7Qw",
"referenceCurrencySymbol": "CNY",
"referenceCurrencyName": "Chinese Yuan",
"referenceCurrencyIconUrl": "https://cdn.coinranking.com/__Q5DN_tH/cn.svg",
"price": "637459.34229400648858905809"
},
{
"referenceCurrencyUuid": "yhjMzLPhuIDl",
"referenceCurrencySymbol": "USD",
"referenceCurrencyName": "US Dollar",
"referenceCurrencyIconUrl": "https://cdn.coinranking.com/FNwFOF8tV/us.svg",
"price": "87336.01084405759"
},
{
"referenceCurrencyUuid": "UinC7PrlC4hF",
"referenceCurrencySymbol": "KRW",
"referenceCurrencyName": "South Korean Won",
"referenceCurrencyIconUrl": "https://cdn.coinranking.com/b-ARx3e2S/kr.svg",
"price": "123876504.59582840166794170873"
},
{
"referenceCurrencyUuid": "Ef8u4mwlnsSx",
"referenceCurrencySymbol": "SGD",
"referenceCurrencyName": "Singapore Dollar",
"referenceCurrencyIconUrl": "https://cdn.coinranking.com/c1PE935ks/sg.svg",
"price": "114475.23953379426512176243"
}
]
}
}
Property | Description |
---|---|
status String |
Status of the request Allowed values:success |
data Object |
|
data.prices Object[] |
List of coin prices in fiat currencies |
data.prices.referenceCurrencyUuid String |
UUID of the reference currency |
data.prices.referenceCurrencySymbol String |
Symbol of the reference currency |
data.prices.referenceCurrencyName String |
Name of the reference currency |
data.prices.referenceCurrencyIconUrl String |
Location of the reference currency icon |
data.prices.price String |
Coin price in the reference currency |
jsonHTTP/1.1 404 Not Found
{
"status": "fail",
"type": "COIN_NOT_FOUND",
"message": "Coin not found"
}