# Syra PumpFun Token Analyzer

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

Analyzes a pump.fun or graduated Solana token by mint address and returns analytics/risk data about it

## Facts

- Endpoint: GET https://api.syraa.fun/pumpfun/analyzer
- Price: $0.02/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-token-analyzer-bb80b95a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LQ_yxzb42wy6NvwQUhoHr

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-token-analyzer-bb80b95a
```

Example prompt: Analyze the pump.fun token with mint address 6XU3qh9PK1bGBvP7QcVYFTJv7V2hH5FnQ8zRnMk4pump — is it legit or a likely rug, and what do the on-chain metrics look like?

## When to prefer this

Use this endpoint when you need on-chain analytics and risk assessment for a specific pump.fun or graduated Solana memecoin token, identified by its base58 mint address. Prefer this over general market data endpoints when the token is a pump.fun launch and you need launch-specific signals.

## Known failure modes

- Missing or invalid mint address parameter returns error
- Non-existent mint address returns no data or error
- Payment not processed (402) blocks access
- Rate limiting if called too frequently
- Token not indexed on pump.fun returns empty or error response

## 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 object with ok and paid status fields, plus token analytics data for the specified pump.fun or graduated Solana mint — likely including risk signals, liquidity metrics, holder distribution, and market data for the token.

## 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": {
      "mint": {
       "type": "string",
       "required": true,
       "description": "Solana token mint (base58) — pump.fun or graduated token"
      }
     }
    }
   },
   "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-token-analyzer-bb80b95a/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)
