# Syraa Trending Headlines Feed

> Syraa Trending Headlines 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-15).

Fetches aggregated trending headlines from news and social sources, optionally filtered by ticker symbol or general topics.

## Facts

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

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-434dedf3
```

Example prompt: What are the trending headlines right now for Bitcoin — pull from news and social sources so I can see what people are talking about.

## When to prefer this

Use this endpoint when you need real-time aggregated trending headlines from both news and social sources, especially when filtering by a specific financial ticker symbol. Prefer this over general news APIs when you want crypto/finance-adjacent trending content and are operating in a paid, on-chain payment (x402/USDC) environment.

## Known failure modes

- Invalid or unsupported ticker returns empty results or error
- Payment not provided or insufficient USDC results in 402 Payment Required
- Rate limiting if called too frequently
- Upstream aggregation delay causes stale or missing headlines
- Malformed query parameters return 400 Bad Request

## How this service works

Aggregated, up-to-date trending headlines from news and social sources delivered as a paid data feed.

## Output

A list of trending headlines aggregated from news and social sources, optionally scoped to a specific ticker (e.g. BTC, ETH) or to general topics. Returns up-to-date, curated headline data as a structured feed.

## 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 or 'general'"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-syraa-fun-434dedf3/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)
