# agent402.tools Crypto Research Bundle

> agent402.tools Crypto Research Bundle is a paid API for AI agents from agent402.tools, paid per call via x402, $0.063/call, status unknown (last checked 2026-09-15).

Executes a bundled 7-tool crypto research workflow in one call, returning live price, market structure, OHLC history, trending status, global market context, and recent news for a single coin.

## Facts

- Endpoint: POST https://agent402.tools/api/skill/crypto-research
- Price: $0.063/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent402-tools-crypto-research-bundle-c43dea98
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0gFiibaignSSbQUMDfoTR

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 agent402-tools-crypto-research-bundle-c43dea98 -d '<json body>'
```

Example prompt: Give me a full crypto research deep-dive on Solana — live price, OHLC history, trending status, global market context, and recent news, all in one shot.

## When to prefer this

Choose this endpoint when you need a comprehensive, multi-dimensional view of a single cryptocurrency in one call instead of orchestrating 7 separate API requests. Ideal for research workflows, investment analysis dashboards, or AI agents that need to reason about a coin holistically without managing multiple round-trips.

## Known failure modes

- Unknown coin ticker or CoinGecko ID returns an error or empty data
- CoinGecko API rate limits or downtime cause partial or failed responses
- Payment failure via x402 results in 402 status and no data returned
- Very new or obscure coins may have missing OHLC or news data
- Network timeout if any of the 7 underlying tools takes too long

## How this service works

Bundled execution of the Crypto research workflow - Pull live price, market structure, OHLC history, trending status, global market context, and recent news for a single coin in one pass. One x402 payment runs 7 underlying tools (crypto-price, crypto-market, crypto-history, crypto-trending, crypto-global, search-news, extract); partial-success per step.

## Output

A bundled response aggregating outputs from 7 underlying tools: live price data, market structure details, OHLC candlestick history, trending status, global crypto market context, and recent news articles — all scoped to the specified coin.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "coin": {
   "type": "string",
   "description": "Coin ticker or CoinGecko id (e.g. BTC, ETH, bitcoin)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "args": {
   "coin": "BTC"
  },
  "pack": "crypto-research",
  "steps": [
   {
    "ok": true,
    "slug": "crypto-price",
    "result": {}
   },
   {
    "ok": true,
    "slug": "crypto-market",
    "result": {}
   },
   {
    "ok": true,
    "slug": "crypto-history",
    "result": {}
   },
   {
    "ok": true,
    "slug": "crypto-trending",
    "result": {}
   },
   {
    "ok": true,
    "slug": "crypto-global",
    "result": {}
   },
   {
    "ok": true,
    "slug": "search-news",
    "result": {}
   },
   {
    "ok": true,
    "slug": "extract",
    "result": {}
   }
  ],
  "summary": "7/7 steps succeeded"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent402-tools-crypto-research-bundle-c43dea98/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent402.tools](https://www.zero.xyz/host/agent402.tools/llms.txt)
