# Syra AI Trading Event Feed

> Syra AI Trading Event Feed is a paid API for AI agents from api.syraa.fun, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Fetches real-time trading events including sentiment analysis, risk scoring, whale tracking, and market signals for a given ticker or general market

## Facts

- Endpoint: GET https://api.syraa.fun/event
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/syra-ai-trading-event-feed-92b1cb53
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_s9b4xIqRG5Kt420alNk-q

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-ai-trading-event-feed-92b1cb53
```

Example prompt: Pull the latest Syra AI trading events for ETH — I want to see any whale activity, sentiment signals, and risk scores right now.

## When to prefer this

Use this endpoint when you need real-time, institutional-grade trading intelligence for a specific crypto ticker or the general market, especially when you want combined sentiment, risk scoring, and whale tracking in a single call. Prefer this over general news endpoints when you need actionable trading signals rather than headlines.

## Known failure modes

- Payment not completed (402) — request rejected if USDC payment not attached
- Invalid ticker symbol returns empty or error response
- Network latency may delay real-time data freshness
- General market feed may be less specific than ticker-level data
- Rate limiting if too many requests in short period

## 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 flags plus real-time trading event data including sentiment analysis, risk scoring, whale tracking signals, and market alerts for the requested ticker or general market conditions.

## 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"
    }
   }
  }
 }
}
```

## 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-ai-trading-event-feed-92b1cb53/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)
