Skip to main content
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

x-cg-pro-api-key
string
header
required

Learn how to set up your API key

Response

200 - application/json

List of recently added coins

id
string
required

Coin ID

symbol
string
required

Coin symbol

name
string
required

Coin name

activated_at
integer
required

Timestamp when coin was activated on CoinGecko