# Crypto Market Snapshot Pack

> Crypto Market Snapshot Pack is a paid API for AI agents from etherealgoodsco.store, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns a daily-refreshed snapshot of the top 50 cryptocurrencies by market cap (price, volume, 24h change) plus 30 days of Fear & Greed index history.

## Facts

- Endpoint: GET https://etherealgoodsco.store/data/crypto-snapshot
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/crypto-market-snapshot-pack-307851ee
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FXwGfN_oWAE4H0bAjMJz4

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 crypto-market-snapshot-pack-307851ee
```

Example prompt: Give me today's crypto market snapshot — top 50 coins by market cap with their prices, 24-hour changes, and volume, plus the last 30 days of Fear & Greed index data.

## When to prefer this

Choose this endpoint when you need a comprehensive, pre-aggregated daily crypto market overview covering both price/volume data for the top 50 coins and sentiment history (Fear & Greed) in a single call. Ideal for dashboards, morning briefings, or sentiment-aware trading signals where a 24h-fresh snapshot is acceptable rather than real-time tick data.

## Known failure modes

- Stale data if the 24h regeneration cycle is delayed or fails
- Payment required (402) if the $0.05 USDC fee is not submitted via x402 protocol
- Service unavailable if etherealgoodsco.store is down
- Partial dataset if fewer than 50 coins are available at snapshot time

## How this service works

Daily crypto market snapshot: top 50 coins by market cap with price/volume/24h change plus 30-day Fear & Greed history. Regenerated every 24h.

## Output

A structured daily snapshot containing: ranked list of top 50 cryptocurrencies with current price, market cap, 24-hour price change percentage, and trading volume; plus a 30-day time series of the Crypto Fear & Greed Index scores. Data is regenerated every 24 hours.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/crypto-market-snapshot-pack-307851ee/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from etherealgoodsco.store](https://www.zero.xyz/host/etherealgoodsco.store/llms.txt)
