# EMC2 AI Pump.fun Trading Volume Tracker

> EMC2 AI Pump.fun Trading Volume Tracker is a paid API for AI agents from emc2ai.io, paid per call via x402, $0.75/call, status unknown (last checked 2026-09-14).

Retrieves trading volume data for tokens launched on Pump.fun on the Solana blockchain, with optional filtering by chain, limit, and time period.

## Facts

- Endpoint: POST https://emc2ai.io/x402/bitquery/pumpfun-volume
- Price: $0.75/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/emc2-ai-f383f0ac
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_V30v6ou2tLGrLqhFORLFJ

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 emc2-ai-f383f0ac -d '<json body>'
```

Example prompt: Show me the top Pump.fun tokens by trading volume on Solana right now — give me the top 20 over the last 24 hours.

## When to prefer this

Use this endpoint when you specifically need trading volume data for tokens on the Pump.fun launchpad on Solana. Prefer this over generic DEX volume endpoints when focusing on newly launched memecoins and speculative tokens native to Pump.fun, powered by Bitquery on-chain data.

## Known failure modes

- Unsupported chain specified — only Solana is supported
- Invalid or out-of-range limit parameter
- Bitquery upstream API unavailable or rate-limited
- Payment of $0.75 USDC not completed via x402 protocol
- No data available for the specified time period
- Malformed request body returns 400 error

## How this service works

Track trading volume for Pump.fun tokens. Supported chains: solana. Default chain: solana. Required params: none (chain/limit/timeperiod are optional and defaulted).

## Output

Returns a ranked list of Pump.fun tokens and their associated trading volumes on the Solana blockchain, including metrics such as volume figures, token identifiers, and aggregated trade data over the specified time period.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "string",
   "description": "Maximum number of results to return (default: 10, max: 500)"
  },
  "timeperiod": {
   "enum": [
    "1h",
    "4h",
    "24h",
    "7d",
    "30d"
   ],
   "type": "string",
   "description": "Time period for analysis (e.g., 1h, 24h, 7d, 30d)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "result": {},
 "status": "completed",
 "analysis": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/emc2-ai-f383f0ac/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from emc2ai.io](https://www.zero.xyz/host/emc2ai.io/llms.txt)
