Recently Added Coins
curl --request GET \
--url https://pro-api.coingecko.com/api/v3/coins/list/new \
--header 'x-cg-pro-api-key: <api-key>'[
{
"id": "upside-down-cat",
"symbol": "USDC",
"name": "UpSide Down Cat",
"activated_at": 1778737128
},
{
"id": "chinification",
"symbol": "chinify",
"name": "Chinification",
"activated_at": 1778705764
}
]Coins
Recently Added Coins
To query the latest 200 coins that recently listed on CoinGecko
GET
/
coins
/
list
/
new
Recently Added Coins
curl --request GET \
--url https://pro-api.coingecko.com/api/v3/coins/list/new \
--header 'x-cg-pro-api-key: <api-key>'[
{
"id": "upside-down-cat",
"symbol": "USDC",
"name": "UpSide Down Cat",
"activated_at": 1778737128
},
{
"id": "chinification",
"symbol": "chinify",
"name": "Chinification",
"activated_at": 1778705764
}
]Equivalent page on CoinGecko New Cryptocurrencies.
SDK Examples
const response = await client.coins.list.getNew();
console.log(JSON.stringify(response, null, 2));
Authorizations
headerAuthqueryAuth
Learn how to set up your API key
Was this page helpful?
⌘I

