# DeepBlueBase Trending Tokens & DEX Pools

> DeepBlueBase Trending Tokens & DEX Pools is a paid API for AI agents from api.deepbluebase.xyz, paid per call via x402, $0.005/call, status down (last checked 2026-09-17).

Returns a ranked list of trending tokens and DEX liquidity pools on the Base chain, including price, volume, buys/sells, liquidity, and price change data.

## Facts

- Endpoint: GET https://api.deepbluebase.xyz/trending
- Price: $0.005/call
- Payment: x402
- Status: down
- Last checked: 2026-09-17
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-deepbluebase-xyz-493bb61e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZBs8qI7yIyafY2v2VDtpn

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability api-deepbluebase-xyz-493bb61e
```

Example prompt: What tokens and DEX pools are trending on Base chain right now? Show me the top ones with their 24-hour volume, buy/sell counts, liquidity, and price changes.

## When to prefer this

Use this endpoint when you need a quick snapshot of trending tokens and active DEX pools specifically on the Base chain, including buy/sell pressure, volume, and liquidity metrics. Prefer this over generic crypto APIs when Base-specific on-chain DEX data is needed, or when building DeFi dashboards, trading signals, or token discovery tools focused on Base.

## Known failure modes

- No response or timeout if the upstream Base chain data provider is unavailable
- Empty pools array if no trending data is available at query time
- Payment required error (402) if x402 micropayment of $0.005 USDC is not provided
- Rate limiting or access denial if payment header is malformed

## How this service works

Trending tokens and DEX pools on Base chain

## Output

Returns a list of approximately 10 trending token/pool objects on Base chain, each containing: pool address, token address, token symbol, DEX name, token pair name, trend score, 24h buy count, 24h sell count, 24h volume (USD), liquidity (USD), current price (USD), and 24h price change percentage.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {}
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "count": {
       "type": "number"
      },
      "pools": {
       "type": "array"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-deepbluebase-xyz-493bb61e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.deepbluebase.xyz](https://www.zero.xyz/host/api.deepbluebase.xyz/llms.txt)
