# Syra PumpFun Scout

> Syra PumpFun Scout is a paid API for AI agents from api.syraa.fun, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-13).

Scouts and ranks trending or high-potential tokens on Pump.fun using pump scores, time windows, and optional LLM narrative enrichment

## Facts

- Endpoint: GET https://api.syraa.fun/pumpfun/scout
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/syra-pumpfun-scout-f33f3d59
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RwBh480KXa2vYPeaCnNib

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-pumpfun-scout-f33f3d59
```

Example prompt: Scout the top 20 alpha-segment pump.fun tokens from this week that have a pump score of at least 60, and include the LLM narrative enrichment so I can get a summary of what's moving.

## When to prefer this

Use this endpoint when you need to discover and rank trending or high-potential tokens specifically on the Pump.fun Solana launchpad, especially when you want scored, segmented filtering (alpha/beta/predicted/utility) with optional AI narrative. Prefer over generic on-chain data feeds when you want pre-scored pump momentum signals.

## Known failure modes

- Invalid segment value returns 400 or empty result
- minPumpScore above 100 returns validation error
- No tokens found matching criteria returns empty list
- LLM enrichment unavailable returns data without narrative
- Payment not fulfilled returns 402 Payment Required

## 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

Returns a JSON array of ranked Pump.fun tokens filtered by segment, time period, and minimum pump score, with optional LLM-generated narrative context describing market momentum and notable activity.

## 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": {
      "llm": {
       "type": "boolean",
       "required": false,
       "description": "Enable optional LLM narrative enrichment (default false)"
      },
      "limit": {
       "type": "integer",
       "required": false,
       "description": "Max items to return (default 10, max 50)"
      },
      "period": {
       "type": "string",
       "required": false,
       "description": "Time window: today | week | month (default today)"
      },
      "segment": {
       "type": "string",
       "required": false,
       "description": "Data segment: alpha | beta | predicted | utility (default alpha)"
      },
      "minPumpScore": {
       "type": "integer",
       "required": false,
       "description": "Minimum pump score filter (default 48, max 100)"
      }
     }
    }
   },
   "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-pumpfun-scout-f33f3d59/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)
