Retrieve the latest coin listings on a specific DEX exchange. On Coinranking, we use this endpoint on our DEX exchange new coin listings page.
https://api.coinranking.com/v2/dex/:uuid/coins/new
| Parameter | Description |
|---|---|
uuid String | UUID of the DEX 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:
https://api.coinranking.com/v2/dex/5Sfs67ZcuOWm/coins/new?referenceCurrencyUuid=5k-_VTxqtCEI
|
limit (optional) Number |
Limit. Used for pagination. The maximum amount of results you can fetch in one request is 5000 for the Startup and Professional plan, and 100 for the Free plan. Default value: 50Size range: 0-5000 Example:
https://api.coinranking.com/v2/dex/5Sfs67ZcuOWm/coins/new?limit=10
|
offset (optional) Number |
Offset. Used for pagination Default value: 0Example:
https://api.coinranking.com/v2/dex/5Sfs67ZcuOWm/coins/new?offset=50
|
jsonHTTP/1.1 200 OK
{
"status": "success",
"data": {
"coins": [
{
"listedAt": 1762902770,
"uuid": "7P5OHd5iR4JC",
"symbol": "GON",
"name": "GoGon Coin",
"iconUrl": "https://cdn.coinranking.com/SkxEigkkOg/gogon-coin.svg",
"price": "0.000034465484245165",
"24hVolume": "0.6619203313111162"
},
{
"listedAt": 1762901931,
"uuid": "fpJ2NpbWyJf1",
"symbol": "EQUALITY",
"name": "Equality Coin",
"iconUrl": "https://cdn.coinranking.com/_rklVEJvw0/equality-coin.svg",
"price": "0.000003447184328259",
"24hVolume": "805.6231538782771"
},
...
]
}
}
| Property | Description |
|---|---|
status String |
Status of the request Allowed values:success |
data Object |
|
data.coins Object[] |
List of coins, ordered by tier (ascending) then |
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. Replace |
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"
}