added

Now Supported: Launchpad Data (Pump.fun & More), Granular OHLCV, and Honeypot Info

We're excited to announce a major update to our on-chain API endpoints! This release introduces support for popular token launchpads, adds high-frequency OHLCV data, and enhances our honeypot detection capabilities to give you deeper and more timely on-chain insights.


πŸš€ Now Supporting Launchpad Data (Pump.fun & More!)

In addition to the 1,600+ DEXes already integrated with GeckoTerminal.com, you can now track token data from popular launchpad platforms directly through the CoinGecko API. More launchpads will be supported soon!

New Supported Launchpads:

Launchpadnetwork id (API)dex id (API)
Meteora DBCsolanameteora-dbc
Pump.funsolanapump-fun
Raydium Launchpad (LetsBonkFun)solanaraydium-launchlab
Boop.funsolanaboop-fun
Virtuals (Base)basevirtuals-base

Improved endpoints to track launchpad data:

More launchpad-specific data will be supported soon for the endpoints above!

Tips: use megafilter endpoint to retrieve latest launchpad data, by flagging sort=pool_created_at_desc

Request example (Get latest pools on Pump.fun):

https://pro-api.coingecko.com/api/v3/onchain/pools/megafilter?page=1&networks=solana&dexes=pump-fun&sort=pool_created_at_desc&x_cg_pro_api_key=YOUR_KEY


[Pro-API Exclusive] More Granular OHLCV Data

On-chain OHLCV endpoints now support higher frequency intervals, down to 1-second granularity.

TimeframeAggregate (Before)Aggregate (New)
day11
hour1, 4, 121, 4, 12
minute1, 5, 151, 5, 15
secondn/a1, 15, 30

Improved Endpoints:

New interval supported:

  • 1s
  • 15s
  • 30s

Example Request (Get the last 100 1-second intervals for a pool on Ethereum):

https://pro-api.coingecko.com/api/v3/onchain/networks/eth/pools/0x06da0fd433c1a5d7a4faa01111c044910a184553/ohlcv/second?aggregate=1&limit=100&include_empty_intervals=false&x_cg_pro_api_key=YOUR_KEY


🍯 Enhanced Honeypot Information

We've expanded our honeypot detection features to provide more comprehensive risk assessment. You can now check if a token is a potential honeypot using the main info endpoints.

Improved Endpoints:

Example Payload:

{
 "mint_authority": null,
 "freeze_authority": null,
 "is_honeypot": true  // possible values: true / false / unknown
}


[Pro-API Exclusive] New Filtering Option in Megafilter

Previously, thePools Megafilter endpoint could only show tokens confirmed as not a honeypot (checks=no_honeypot). Now, you can also include tokens where the honeypot status is 'unknown'.

  • To use this, set include_unknown_honeypot_tokens=true.
  • Important: This parameter only takes effect when checks=no_honeypot is also specified in the request.

Example Request (Get trending pools that are not confirmed honeypots, including those with an unknown status):

https://pro-api.coingecko.com/api/v3/onchain/pools/megafilter?page=1&sort=h6_trending&checks=no_honeypot&include_unknown_honeypot_tokens=true&x_cg_pro_api_key=YOUR_KEY


πŸ“ˆ Expanded Pool Data

Endpoint: Pool Tokens Info by Pool Address

By adding include=pool to your request on the pool tokens endpoint, you can now retrieve additional context about the pool itself.

  • Base and quote token address
  • Sentiment vote percentage (positive and negative)
  • Community suspicious reports count

Payload Example:

  "included": [
    {
      "id": "eth_0x06da0fd433c1a5d7a4faa01111c044910a184553",
      "type": "pool",
      "attributes": {
        "base_token_address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
        "quote_token_address": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
        "sentiment_vote_positive_percentage": 100,
        "sentiment_vote_negative_percentage": 0,
        "community_sus_report": 0
      }
    }
  ]