# Syraa Sundown Digest

> Syraa Sundown Digest 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).

Delivers a paid end-of-day market digest summarizing daily market activity, key metrics, and notable events across crypto markets.

## Facts

- Endpoint: GET https://api.syraa.fun/sundown-digest
- 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-8ecdff47
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fkCWhFHVOy0cadV04ZiqC

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-8ecdff47
```

Example prompt: Can you pull today's end-of-day market digest from Syraa — I want a summary of what happened in crypto markets today, including key metrics and any notable events?

## When to prefer this

Choose this endpoint when you need a consolidated, curated end-of-day summary of crypto market activity rather than real-time data. Ideal for daily briefings, post-market analysis, or automating EOD reporting workflows. Prefer over real-time endpoints when the user wants a retrospective daily recap rather than live prices or live order book data.

## Known failure modes

- Payment not provided or insufficient USDC — returns 402 Payment Required
- Digest not yet available for the current day (called too early) — may return empty or stale data
- Network or server error — returns 5xx response
- Invalid or malformed request — returns 400 Bad Request

## How this service works

Provides a paid end-of-day digest summarizing market activity, key metrics, and notable events.

## Output

A structured end-of-day digest covering the day's crypto market activity, including key metrics (prices, volumes, trends) and notable events or market-moving news from the trading day.

## 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-8ecdff47/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)
