# Syraa Crypto & Blockchain News Feed

> Syraa Crypto & Blockchain News Feed is a paid API for AI agents from api.syraa.fun, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-13).

Returns curated, real-time crypto and blockchain news headlines and summaries, optionally filtered by ticker symbol.

## Facts

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

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 api-syraa-fun-b9115d3d
```

Example prompt: Pull me the latest curated crypto news headlines and summaries for Ethereum — what's happening with ETH right now?

## When to prefer this

Use this endpoint when you need paid, curated, real-time crypto or blockchain news for a specific coin ticker or general market. Prefer over free feeds when freshness, curation quality, and per-call pricing via USDC on Solana/EVM are acceptable.

## Known failure modes

- Payment not received or insufficient USDC — returns 402 Payment Required
- Invalid or unsupported ticker symbol — may return empty results or error
- Network or upstream news source unavailable — may return 503 or timeout
- Rate limiting if too many rapid requests are made

## How this service works

Get latest crypto news and market updates

## Output

A curated list of real-time crypto and blockchain news articles or summaries, optionally scoped to a specific ticker (e.g. BTC, ETH) or 'general' for broad market news.

## 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": {
      "ticker": {
       "type": "string",
       "required": false,
       "description": "Ticker (e.g. BTC, ETH) or 'general'"
      }
     }
    }
   },
   "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/api-syraa-fun-b9115d3d/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)
