# CRYPTYX Intelligence Report Generator

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

Generates structured intelligence reports on digital assets using a specified template such as daily digest, asset deep dive, or signal summary

## Facts

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

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-intelligence-report-generator-cad35d96 -d '<json body>'
```

Example prompt: Pull me the CRYPTYX daily_digest intelligence report for today — I want the full overview of crypto metrics and signals.

## When to prefer this

Choose this endpoint when you need a structured, templated intelligence report on digital assets — especially when you want a daily digest, deep dive on a specific asset, or a signal summary. Prefer this over raw data feeds when you need synthesized, human-readable analysis compiled from hundreds of metrics and signals.

## Known failure modes

- Invalid or missing templateId returns an error — must be one of: daily_digest, asset_deep_dive, signal_summary
- Missing required inputs for the chosen template may cause a generation failure or incomplete report
- Payment failure (x402) results in a 402 response before report is generated
- Malformed inputs object causes a 400-level error
- Service unavailability returns a 5xx error

## How this service works

Continuously compounding intelligence across hundreds of metrics, signals, and digital assets. Clarity in chaos — built for elite operators and the agents that serve them.

## Output

A structured intelligence report object containing a date, title, and sections array (e.g. 'overview'). The report aggregates metrics, signals, and analysis across digital assets according to the chosen template (daily_digest, asset_deep_dive, or signal_summary).

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

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

## More

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