Skip to main content
GET
/
onchain
/
pools
/
trending_search
Trending Search Pools
curl --request GET \
  --url https://pro-api.coingecko.com/api/v3/onchain/pools/trending_search \
  --header 'x-cg-pro-api-key: <api-key>'
{
  "data": [
    {
      "id": "solana_ojW3ZwJMh9J1K2QS7g4YvoMrBso6saH2s7fthijqyoh",
      "type": "pool",
      "attributes": {
        "trending_rank": 0,
        "address": "ojW3ZwJMh9J1K2QS7g4YvoMrBso6saH2s7fthijqyoh",
        "name": "CYPAW / SOL",
        "pool_created_at": "2026-05-26T12:22:03Z",
        "fdv_usd": "2521.4293653196",
        "market_cap_usd": null,
        "volume_usd": {
          "h24": "1283.0470400706"
        },
        "reserve_in_usd": "3899.9791"
      },
      "relationships": {
        "network": {
          "data": {
            "id": "solana",
            "type": "network"
          }
        },
        "dex": {
          "data": {
            "id": "pumpswap",
            "type": "dex"
          }
        },
        "base_token": {
          "data": {
            "id": "solana_JCMoQSqzxNGkQWr4bPK4AzAi7wbBJEJ71ex1qKAxpump",
            "type": "token"
          }
        },
        "quote_token": {
          "data": {
            "id": "solana_So11111111111111111111111111111111111111112",
            "type": "token"
          }
        }
      }
    }
  ],
  "included": [
    {
      "id": "solana_JCMoQSqzxNGkQWr4bPK4AzAi7wbBJEJ71ex1qKAxpump",
      "type": "token",
      "attributes": {
        "address": "JCMoQSqzxNGkQWr4bPK4AzAi7wbBJEJ71ex1qKAxpump",
        "name": "CyberPaws",
        "symbol": "CYPAW",
        "decimals": 6,
        "image_url": "https://assets.geckoterminal.com/q0m4wsxl5elcsvbwep1zflp1nbnf",
        "coingecko_coin_id": null
      }
    },
    {
      "id": "solana_So11111111111111111111111111111111111111112",
      "type": "token",
      "attributes": {
        "address": "So11111111111111111111111111111111111111112",
        "name": "Wrapped SOL",
        "symbol": "SOL",
        "decimals": 9,
        "image_url": "https://coin-images.coingecko.com/coins/images/21629/large/solana.jpg?1696520989",
        "coingecko_coin_id": "wrapped-solana"
      }
    },
    {
      "id": "pumpswap",
      "type": "dex",
      "attributes": {
        "name": "PumpSwap"
      }
    },
    {
      "id": "solana",
      "type": "network",
      "attributes": {
        "name": "Solana",
        "coingecko_asset_platform_id": "solana"
      }
    }
  ]
}

Notes

  • Unverified token market cap returns null — the displayed value on GeckoTerminal may match FDV and might not be accurate.
  • Use include to return related attributes under the top-level included key.

SDK Examples

const response = await client.onchain.pools.trendingSearch.get();

console.log(JSON.stringify(response, null, 2));

Authorizations

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

Learn how to set up your API key

Query Parameters

include
string

Attributes to include, comma-separated if more than one. Available values: base_token, quote_token, dex, network

pools
integer

Number of pools to return, maximum 10. Default value: 4

Response

200 - application/json

Trending search pools across all networks

data
object[]
required
included
object[]

Included related resources, present when include parameter is specified