# CRYPTYX Branded Narrative Report Generator

> CRYPTYX Branded Narrative Report Generator is a paid API for AI agents from www.cryptyx.ai, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-15).

Generates a structured, AI-synthesized branded narrative report (daily digest, asset deep dive, or signal summary) backed by live CRYPTYX intelligence data, with markdown narrative sections for client-facing deliverables.

## Facts

- Endpoint: POST https://www.cryptyx.ai/api/reports/generate
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cryptyx-branded-narrative-report-generator-3c33895f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yOc2ByVUFBeQgdyvgE09a

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 cryptyx-branded-narrative-report-generator-3c33895f -d '<json body>'
```

Example prompt: Generate a CRYPTYX asset deep dive report for Bitcoin — use the asset_deep_dive template and include the latest signals and macro regime context so I can share it with clients.

## When to prefer this

Choose this endpoint when you need a polished, client-ready narrative report that combines CRYPTYX's live signal data, macro regime classifications, and AI synthesis into structured markdown sections. Prefer this over raw data endpoints when the output is destined for human readers, client deliverables, weekly digests, or PM commentary rather than downstream programmatic processing.

## Known failure modes

- Invalid templateId value (must be daily_digest, asset_deep_dive, or signal_summary) — returns 400 bad request
- Missing or malformed inputs object for the selected template — returns 422 unprocessable entity
- Payment not included or insufficient (requires $0.25 USDC via x402) — returns 402 payment required
- Live CRYPTYX data temporarily unavailable — returns 503 service unavailable
- Rate limit exceeded — returns 429 too many requests

## How this service works

Generate a branded narrative report (daily digest / asset deep dive / signal summary) backed by live CRYPTYX data and AI-synthesized analysis. Outputs structured sections plus markdown narrative. Use for client-facing deliverables, weekly digests, and PM commentary.

## Output

A JSON object containing a structured report with a date, title, and named sections (e.g. overview) rendered in markdown narrative format, synthesized from live CRYPTYX signal and macro regime data, suitable for client-facing distribution or PM commentary.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "inputs": {
   "type": "object",
   "description": "Template inputs"
  },
  "templateId": {
   "type": "string",
   "description": "Template: daily_digest/asset_deep_dive/signal_summary"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "application/json",
 "example": {
  "report": {
   "date": "2026-04-25",
   "title": "CRYPTYX Intelligence Report",
   "sections": [
    "overview"
   ]
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cryptyx-branded-narrative-report-generator-3c33895f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.cryptyx.ai](https://www.zero.xyz/host/www.cryptyx.ai/llms.txt)
