# Syra Pump.fun Trending Coins

> Syra Pump.fun Trending Coins 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-13).

Returns a paginated list of currently trending coins on Pump.fun, optionally including NSFW tokens

## Facts

- Endpoint: GET https://api.syraa.fun/pumpfun/trending
- Price: $0.00108/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/syra-pump-fun-trending-coins-9fcf79cc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_37u7S6N1_LTjRn63rMzh9

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 syra-pump-fun-trending-coins-9fcf79cc
```

Example prompt: What are the top 20 trending coins on Pump.fun right now? Show me the first page and exclude any NSFW tokens.

## When to prefer this

Use this endpoint when you need real-time trending coin discovery specifically from Pump.fun on Solana, rather than general crypto market data or CEX listings. Prefer this over Binance ticker endpoints when the focus is on newly launched or viral Solana meme coins rather than established assets.

## Known failure modes

- Payment not received — 402 response if x402 payment is not included
- Invalid limit value (above 50) — may return error or clamp to max
- Upstream Pump.fun API outage — may return 503 or empty results
- Invalid offset — may return empty array rather than error

## 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 object with ok and paid confirmation flags plus a paginated list of currently trending Pump.fun coins, including coin metadata and ranking signals, up to 50 results per page.

## 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/syra-pump-fun-trending-coins-9fcf79cc/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)
