> ## Documentation Index
> Fetch the complete documentation index at: https://docs.coingecko.com/llms.txt
> Use this file to discover all available pages before exploring further.

# 💼 Recently Added Coins

> This endpoint allows you to **query the latest 200 coins that recently listed on CoinGecko**

<Note>
  ### Note

  * CoinGecko equivalent page: [https://www.coingecko.com/en/new-cryptocurrencies](https://www.coingecko.com/en/new-cryptocurrencies).
  * Cache / Update Frequency: Every 30 seconds.
  * Exclusive for Paid Plan Subscribers (Analyst, Lite, Pro and Enterprise).
</Note>


## OpenAPI

````yaml api-reference/coingecko-pro.json get /coins/list/new
openapi: 3.0.0
info:
  title: CoinGecko Pro API
  version: 3.0.0
servers:
  - url: https://pro-api.coingecko.com/api/v3
security:
  - apiKeyAuth: []
  - apiKeyQueryParam: []
paths:
  /coins/list/new:
    get:
      tags:
        - Coins
      summary: 💼 Recently Added Coins
      description: >-
        This endpoint allows you to **query the latest 200 coins that recently
        listed on CoinGecko**
      operationId: coins-list-new
      responses:
        '200':
          description: List latest 200 coins
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CoinsListNew'
components:
  schemas:
    CoinsListNew:
      type: array
      items:
        type: object
        properties:
          id:
            type: string
            description: coin ID
          symbol:
            type: string
            description: coin symbol
          name:
            type: string
            description: coin name
          activated_at:
            type: number
            description: timestamp when coin was activated on CoinGecko
      example:
        - id: long-johnson
          symbol: olong
          name: Long Johnson
          activated_at: 1712562430
        - id: dogita
          symbol: doga
          name: DOGITA
          activated_at: 1712562282
        - id: bebe-on-base
          symbol: bebe
          name: Bebe on Base
          activated_at: 1712561709
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-cg-pro-api-key
    apiKeyQueryParam:
      type: apiKey
      in: query
      name: x_cg_pro_api_key

````