# Syraa Binance Market Data & Exchange Insights

> Syraa Binance Market Data & Exchange Insights 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 Binance market data and exchange insights including ticker stats, order book depth, and correlation data via a paid API endpoint.

## Facts

- Endpoint: GET https://api.syraa.fun/binance
- 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-1c036b3b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_p4ytwRvonQlpPW4VR8UBh

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-1c036b3b
```

Example prompt: Can you pull the latest Binance market data and exchange insights for BTC, showing the top 10 results?

## When to prefer this

Use this endpoint when you need broad Binance market data and exchange insights in a single call, especially when you want overview-level data rather than a specific data type like order book depth or 24h ticker alone. Prefer this over sibling endpoints when you want aggregated exchange insights rather than a narrowly scoped metric.

## Known failure modes

- Missing or invalid symbol parameter returns empty or error response
- Payment not processed — 402 response if USDC payment not attached
- Rate limiting if too many requests in short period
- Invalid limit parameter defaults to 10 or returns validation error
- Binance API downtime causing upstream data unavailability

## How this service works

Fetches Binance market data and exchange insights via a paid API endpoint.

## Output

Returns Binance market data and exchange insights including ticker statistics, order book depth, price correlation data, and other exchange-level metrics for the queried trading symbol or market.

## 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": {
      "limit": {
       "type": "string",
       "required": false,
       "description": "Max results (default 10)"
      },
      "symbol": {
       "type": "string",
       "required": false,
       "description": "Symbol for correlation"
      }
     }
    }
   },
   "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-1c036b3b/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)
