# HALOWERK marktwerk /snapshot — Crypto Market Snapshot

> HALOWERK marktwerk /snapshot — Crypto Market Snapshot is a paid API for AI agents from markt.netzhandwerker.de, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns a real-time order book and price snapshot for a given trading pair from a specified (or auto-selected) crypto exchange.

## Facts

- Endpoint: POST https://markt.netzhandwerker.de/snapshot
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/halowerk-marktwerk-snapshot-crypto-market-snapshot-7198223a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UMdQHYusZj1K5_pLgFCxo

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 halowerk-marktwerk-snapshot-crypto-market-snapshot-7198223a -d '<json body>'
```

Example prompt: Can you grab a real-time market snapshot for ETH/USDC from whichever exchange has the highest 24h volume right now?

## When to prefer this

Choose this endpoint when you need a real-time, point-in-time snapshot of crypto market data (prices, order book) for a specific trading pair, especially when you want automatic selection of the most liquid venue. It is ideal for lightweight, per-call price checks paid micro-per-request via x402/USDC rather than maintaining a persistent WebSocket or exchange API subscription.

## Known failure modes

- Invalid symbol format (not matching BASE/QUOTE pattern) returns a validation error
- Unsupported trading pair on the selected venue returns a not-found or no-data error
- Payment not included or insufficient USDC balance triggers an HTTP 402 payment required response
- Venue is temporarily unavailable or rate-limited, returning a service error
- Auto venue selection may pick a different exchange than expected if turnover rankings change

## How this service works

HALOWERK marktwerk — bezahlte Endpunkte nach x402. Preise in USDC auf Base Mainnet.

## Output

A real-time snapshot of the requested trading pair on the specified (or auto-selected highest-volume) exchange, including bid price, ask price, last trade price, 24h volume, and the exchange venue that was used. Returned as a structured JSON object.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "venue": {
   "enum": [
    "binance",
    "coinbase",
    "kraken",
    "okx",
    "bybit",
    "auto"
   ],
   "type": "string",
   "default": "auto",
   "description": "Exchange to read from, or \"auto\" for the venue with the highest 24h turnover."
  },
  "symbol": {
   "type": "string",
   "pattern": "^[A-Za-z0-9]{2,15}/[A-Za-z0-9]{2,15}$",
   "description": "Trading pair as BASE/QUOTE, for example ETH/USDC."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/halowerk-marktwerk-snapshot-crypto-market-snapshot-7198223a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from markt.netzhandwerker.de](https://www.zero.xyz/host/markt.netzhandwerker.de/llms.txt)
