# Syra Rugcheck Report

> Syra Rugcheck Report 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-15).

Fetches a rug-pull risk report for a Solana token by its mint address

## Facts

- Endpoint: GET https://api.syraa.fun/rugcheck/report
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/syra-rugcheck-report-38dc8478
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ukhNdhUbKYaprO3NvlDLO

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-rugcheck-report-38dc8478
```

Example prompt: Can you run a rugcheck report on the Solana token with mint address So11111111111111111111111111111111111111112 and tell me if it looks safe?

## When to prefer this

Use this endpoint when you need a quick, pay-per-call rug-pull safety check on a Solana token mint before trading, listing, or investing. Prefer it over manual on-chain analysis when you need a machine-readable risk report in an automated agent or DeFi workflow. Best suited for Solana-specific tokens; not applicable to EVM chains.

## Known failure modes

- Missing or invalid mint address returns an error or empty result
- Unrecognized base58 mint address may return not-found response
- Payment failure (insufficient USDC balance) results in HTTP 402 and no report
- Network or upstream data source unavailability may cause timeouts
- Mint address for a very new or obscure token may have insufficient on-chain data

## 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 fields indicating whether the call succeeded (ok), whether payment was processed (paid), and token risk/safety data for the given Solana mint address — including rug-pull risk indicators and safety scores.

## 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)"
      }
     }
    }
   },
   "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-rugcheck-report-38dc8478/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)
