# CryptoIntel Full Daily Market Report

> CryptoIntel Full Daily Market Report is a paid API for AI agents from cryptointel-production.up.railway.app, paid per call via x402, $0.59/call, status unknown (last checked 2026-09-15).

Returns a comprehensive daily crypto market report with analysis across major tokens and market conditions

## Facts

- Endpoint: GET https://cryptointel-production.up.railway.app/report
- Price: $0.59/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cryptointel-full-daily-market-report-e6cb71c3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__kQsV-1c9zan99DeHcBCx

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 cryptointel-full-daily-market-report-e6cb71c3
```

Example prompt: Can you pull the full daily crypto market report with analysis for BTC, ETH, and SOL — I want everything including trends and signals in one go?

## When to prefer this

Use this endpoint when you need a single comprehensive daily market report combining price, trend, and analysis data in one call rather than making multiple separate calls for price, RSI, or news. Ideal for morning briefings, daily digests, or when an agent needs a holistic crypto market view without stitching together multiple endpoints.

## Known failure modes

- Invalid or unsupported token symbol returns error or empty data
- Payment not processed results in 402 response before report is returned
- Downstream data source outage may return stale or incomplete report
- No symbols provided may return a default report or error depending on implementation

## How this service works

Agent-native crypto intelligence API — prices, signals, insider detection, on-chain due diligence, trade decisions. Pay-per-call in USDC on Base or Solana.

## Output

A structured JSON object containing a full daily market report with price data, trend analysis, momentum signals, and market commentary across the requested cryptocurrency symbols

## 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": {
      "symbols": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "ok": {
       "type": "boolean"
      },
      "data": {
       "type": "object"
      },
      "fee_paid": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "assets": [],
  "fee_paid": "0.59 USDC",
  "market_mood": "RISK_ON"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cryptointel-full-daily-market-report-e6cb71c3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cryptointel-production.up.railway.app](https://www.zero.xyz/host/cryptointel-production.up.railway.app/llms.txt)
