# Agent Data API — Crypto Snapshot (Multi-Source Composite)

> Agent Data API — Crypto Snapshot (Multi-Source Composite) is a paid API for AI agents from 168.231.82.195.sslip.io, paid per call via x402, $0.002/call, status down (last checked 2026-09-15).

Returns merged per-coin price, market data, funding rates, and sentiment for one or more cryptocurrencies by pulling and normalizing data from CoinGecko, Binance, and Fear & Greed index in a single call.

## Facts

- Endpoint: GET https://168.231.82.195.sslip.io/snapshot
- Price: $0.002/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-data-api-crypto-snapshot-multi-source-composite-ca805b93
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gH0TyFDsO8RLZFUViGF9y

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 agent-data-api-crypto-snapshot-multi-source-composite-ca805b93
```

Example prompt: Pull a combined price, market cap, funding rate, and sentiment snapshot for bitcoin, ethereum, and solana all at once — merged from CoinGecko and Binance into one clean response.

## When to prefer this

Prefer this endpoint when you need price, market, funding, and sentiment data for one or more coins in a single call rather than querying CoinGecko, Binance, and Fear & Greed separately. Ideal for AI agents that need normalized, multi-source crypto data without managing API keys or multiple integrations. Use this over raw exchange APIs when you want cleaned, merged output with minimal integration overhead and pay-per-call USDC billing.

## Known failure modes

- Invalid or unrecognized coin IDs return empty or error results
- Payment not settled via x402/USDC returns 402 Payment Required
- Upstream source (CoinGecko, Binance, F&G) temporarily unavailable may cause partial or stale data
- Malformed query string (missing 'ids' param) returns 400 Bad Request
- Rate limiting or network timeout from upstream sources may increase latency or fail the call

## How this service works

Pay-per-call data utilities for AI agents (no API key, settle USDC on Base via x402). WEB: GET /audit?url= → structured site signals; GET /extract?url= → clean readable extraction. CRYPTO (multi-source, one call, cleaned & normalized): GET /snapshot?ids= → per-coin price+market+funding+sentiment merged from CoinGecko/Binance/F&G; GET /spread?symbol= → cross-venue best bid/ask & arb spread across Binance/Coinbase/Kraken/OKX; GET /funding → all perp funding rates, annualized APR, sorted extremes; GET /defi → DeFi macro (total TVL, top chains, stablecoin supply & 24h delta); GET /pulse → composite market-regime read (Fear&Greed + dominance + mcap delta + BTC funding → signal).

## Output

A JSON object keyed by coin ID, each containing normalized and merged data: current price, market cap, 24h volume, perpetual funding rate, and a Fear & Greed sentiment score — sourced from CoinGecko, Binance, and the Fear & Greed index.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "queryParams": {
     "type": "object",
     "properties": {
      "ids": {
       "type": "string",
       "example": "bitcoin,ethereum,solana"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "result": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-data-api-crypto-snapshot-multi-source-composite-ca805b93/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 168.231.82.195.sslip.io](https://www.zero.xyz/host/168.231.82.195.sslip.io/llms.txt)
