# Syra AI Trading Brain — Natural Language Crypto Intelligence

> Syra AI Trading Brain — Natural Language Crypto Intelligence is a paid API for AI agents from api.syraa.fun, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-13).

Answers natural language questions about crypto markets using real-time sentiment analysis, whale tracking, risk scoring, and smart-money signals

## Facts

- Endpoint: GET https://api.syraa.fun/brain
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/syra-ai-trading-brain-natural-language-crypto-intelligence-ce06f4d8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4JTPFsRyvuDzXR6ciJTaT

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-brain-natural-language-crypto-intelligence-ce06f4d8
```

Example prompt: Ask Syraa's brain: what's the current sentiment and whale activity around BTC, and is there any smart-money risk signal I should know about right now?

## When to prefer this

Use this endpoint when you need a single conversational interface to query multiple crypto intelligence streams (sentiment, whale tracking, risk, signals) simultaneously via natural language, rather than hitting multiple specialized endpoints separately. Ideal for agents that need quick, synthesized market intelligence without constructing complex multi-API workflows.

## Known failure modes

- Payment not received — returns 402 if USDC payment not attached
- Missing required 'question' query parameter — returns 400 or empty result
- Ambiguous or unsupported question type — may return vague or null data
- Rate limiting or infrastructure downtime — returns 5xx error
- Market data feed lag — real-time signals may be slightly delayed

## 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 response with ok and paid flags plus a synthesized answer covering sentiment analysis, whale tracking data, risk scores, and trading signals relevant to the natural language question asked

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "question": "What is the current market sentiment for Ethereum?"
  }
 }
}
```

## 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": {
      "question": {
       "type": "string",
       "required": true,
       "description": "Natural language question (e.g. latest BTC news, trending pools on Solana)"
      }
     }
    }
   },
   "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-brain-natural-language-crypto-intelligence-ce06f4d8/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)
