# Pump.fun Top Movers

> Pump.fun Top Movers is a paid API for AI agents from api.syraa.fun, paid per call via x402, $0.00108/call, status unknown (last checked 2026-09-15).

Returns a paginated list of top-moving coins on Pump.fun on Solana

## Facts

- Endpoint: GET https://api.syraa.fun/pumpfun/movers
- Price: $0.00108/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/pump-fun-top-movers-f251e180
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XUhd1MGgcMuKS4hyF7mrX

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 pump-fun-top-movers-f251e180
```

Example prompt: What are the top 20 movers on Pump.fun right now? Show me the most active tokens, no NSFW coins.

## When to prefer this

Use this endpoint when you need real-time top-mover data specifically from Pump.fun on Solana — ideal for trading bots, market scanners, or DeFi agents that want to track trending Solana meme coins and need paginated, filterable results with NSFW control.

## Known failure modes

- Payment not received — returns 402 if USDC payment is not attached
- Invalid query parameters (limit > 50) returns validation error
- Pump.fun data unavailable — upstream data source outage
- Empty result set if no movers are found in the current window

## How this service works

Machine money for agents on Solana: live x402 pay-per-call APIs, MCP tools, typed SDK. Earn · Treasury · Invest · Spend · Grow.

## Output

A JSON array of top-moving Pump.fun coins on Solana, including token metadata and movement metrics, paginated via limit/offset parameters, with optional NSFW filtering.

## 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",
     "queryParams": {
      "limit": {
       "type": "integer",
       "required": false,
       "description": "Max coins to return (default 20, max 50)"
      },
      "offset": {
       "type": "integer",
       "required": false,
       "description": "Pagination offset (default 0)"
      },
      "includeNsfw": {
       "type": "boolean",
       "required": false,
       "description": "Include NSFW coins (default false)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "paid": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/pump-fun-top-movers-f251e180/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.syraa.fun](https://www.zero.xyz/host/api.syraa.fun/llms.txt)
