# Syra AI Trading Infrastructure Health Check

> Syra AI Trading Infrastructure Health Check is a paid API for AI agents from api.syraa.fun, paid per call via x402, $0.0001/call, status unknown (last checked 2026-09-13).

Returns the operational health and liveness status of the Syra AI trading infrastructure API.

## Facts

- Endpoint: GET https://api.syraa.fun/health
- Price: $0.0001/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-infrastructure-health-check-7a0a4406
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CeYy9u1VqaUgVvq9o92mA

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-infrastructure-health-check-7a0a4406
```

Example prompt: Can you check whether the Syra AI trading infrastructure is currently up and operational?

## When to prefer this

Use this endpoint as a lightweight liveness/health probe before invoking other Syraa trading endpoints, or to confirm the x402 micropayment mechanism is functioning correctly. Prefer this over heavier analytics endpoints when you just need to verify the service is reachable.

## Known failure modes

- API is down or unreachable — no response or connection timeout
- Payment not processed — 'paid' returns false, indicating x402 payment issue
- Service degraded — 'ok' returns false indicating internal infrastructure problems
- Rate limiting or authentication errors if payment fails

## 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 an 'ok' boolean indicating API health and a 'paid' boolean confirming payment was received, e.g. {"ok": true, "paid": true}.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {}
 }
}
```

## 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",
     "properties": {},
     "additionalProperties": false
    }
   },
   "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-infrastructure-health-check-7a0a4406/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)
