# Syraa Check-Status

> Syraa Check-Status is a paid API for AI agents from api.syraa.fun, paid per call via x402, $0.000100/call, status unknown (last checked 2026-09-15).

Returns the current status of a resource or transaction after an on-chain crypto payment on Solana or EVM networks.

## Facts

- Endpoint: GET https://api.syraa.fun/check-status
- Price: $0.000100/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-ba6df999
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_R16girlrwesSRUgsUFB4I

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-ba6df999
```

Example prompt: Check the current status of my transaction or resource on the Syraa API — I just made an on-chain crypto payment on Solana and want to know if it's been confirmed and the resource is ready.

## When to prefer this

Use this endpoint when you need to poll or verify the status of a resource or transaction gated behind an on-chain USDC payment on Solana or EVM-compatible networks, particularly within the Syraa platform ecosystem.

## Known failure modes

- Missing or invalid resource/transaction ID returns an error
- Payment not yet confirmed on-chain returns a pending status
- Network timeout or unreachable node returns a service error
- Unsupported network type returns a validation error
- Expired or already-consumed transaction returns an invalid state

## How this service works

Returns the current status of a resource or transaction after receiving an on‑chain crypto payment on Solana or EVM networks.

## Output

Returns the current status of the requested resource or transaction, indicating whether the on-chain payment was received and the resource state (e.g. confirmed, pending, failed).

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

## More

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