Retrieve the latest coin listings on a specific exchange. On Coinranking, we use this endpoint on our exchange new coin listings page.
https://api.coinranking.com/v2/exchange/:uuid/coins/new
Parameter | Description |
---|---|
uuid String | UUID of the exchange you want to request |
Parameter | Description |
---|---|
referenceCurrencyUuid (optional) String |
UUID of coin (either fiat or crypto), in which all the market caps are calculated. Defaults to US Dollar, but you can use any coin. You can find UUIDs for reference currencies in any coin endpoint, including a convenient dedicated reference currency endpoint Default value: yhjMzLPhuIDlExample:
...coins/new?referenceCurrencyUuid=5k-_VTxqtCEI
|
jsonHTTP/1.1 200 OK
{
"status": "success",
"data": {
"stats": {
"total": 3
},
"coins": [
{
"listedAt": 1742303129,
"uuid": "a3IXgFhtN",
"symbol": "BMT",
"name": "Bubblemaps",
"iconUrl": "https://cdn.coinranking.com/R1dKV2Onp/Bubblemaps.png",
"price": "0.1433805008008976",
"volume": "13704742.016513946"
},
{
"listedAt": 1741698332,
"uuid": "MU49Lzl6d",
"symbol": "EPIC",
"name": "Epic Chain",
"iconUrl": "https://cdn.coinranking.com/3Iv5Rus_f/EPIC.png",
"price": "1.339",
"volume": "2564091.2873"
},
{
"listedAt": 1741093527,
"uuid": "1-Ajtrq28",
"symbol": "GPS",
"name": "GoPlus Security",
"iconUrl": "https://cdn.coinranking.com/HZi3rfMQ4/GPS.png",
"price": "0.03128404558295149",
"volume": "6235184.12285391"
}
]
}
}
Property | Description |
---|---|
status String |
Status of the request Allowed values:success |
data Object |
|
data.coins Object[] |
List of coins, ordered by |
data.coins.listedAt Number |
An Epoch timestamp in seconds |
data.coins.uuid String |
UUID of the coin |
data.coins.symbol String |
Currency symbol |
data.coins.name String |
Name of the coin |
data.coins.iconUrl String |
Location of the icon |
data.coins.price String |
Price of the coin |
data.coins.24hVolume String |
24h trade volume |
jsonHTTP/1.1 422 Unprocessable Entity
{
"status": "fail",
"type": "REFERENCE_UNAVAILABLE",
"message": "Reference currency not available"
}