# HALOWERK marktwerk – Raw Trade Tape

> HALOWERK marktwerk – Raw Trade Tape is a paid API for AI agents from markt.halowerk.com, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Returns the raw public trade tape (time-and-sales) for a BASE/QUOTE pair from Binance, Coinbase, Kraken, OKX, or Bybit, with aggressor-side attribution exactly as each exchange reports it.

## Facts

- Endpoint: POST https://markt.halowerk.com/trades
- Price: $0.002/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-raw-trade-tape-545131f1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tCrlChjBo7SXevkk2BkLo

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-raw-trade-tape-545131f1 -d '<json body>'
```

Example prompt: Pull the last 200 raw trades for ETH/USDC on Coinbase — I want each print exactly as the exchange reported it, including which side was the aggressor.

## When to prefer this

Choose this endpoint when you need unmodified, per-print trade data exactly as a specific exchange publishes it — including aggressor-side attribution and the provenance of that attribution. Prefer it over aggregated or consolidated feeds when the goal is tick-level analysis, reconstructing order flow, or validating execution quality on a particular venue. It is especially valuable when aggressor-side accuracy matters (e.g. distinguishing maker vs taker flow) and you need to know whether the side was natively reported or derived.

## Known failure modes

- Invalid or unsupported BASE/QUOTE symbol format — exchange may not list the pair
- Venue not recognized — must be one of binance, coinbase, kraken, okx, bybit
- Limit exceeds maximum of 1000 (or 60 for Bybit spot)
- since timestamp outside the exchange's published history window — returns empty or partial results
- Exchange API unavailable or rate-limited — upstream timeout or error propagated
- Payment failure — x402 micropayment not processed, request rejected

## How this service works

Returns the raw public trade tape of Binance, Coinbase, Kraken, OKX or Bybit for one BASE/QUOTE pair, oldest first, exactly as the exchange reports it — no smoothing, no merging of prints. side is the side of the aggressor: reported directly by Kraken, OKX and Bybit, derived from the maker flag at Binance, and inverted from the maker side at Coinbase; side_source names which case applies. Where an exchange does not publish it, side is "unbekannt" and side_inferred stays false rather than guessin

## Output

An ordered list (oldest first) of raw trade records for the requested pair and exchange, each containing price, quantity, timestamp, aggressor side (or 'unbekannt' if unknown), a side_source label indicating how the side was determined, and a side_inferred boolean indicating whether the side was derived rather than natively published.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "integer",
   "default": 100,
   "maximum": 1000,
   "minimum": 1,
   "description": "Number of trades, newest last. Bybit spot publishes at most 60."
  },
  "since": {
   "type": "string",
   "format": "date-time",
   "description": "Optional ISO start time. Only filters inside the window the exchange publishes."
  },
  "venue": {
   "enum": [
    "binance",
    "coinbase",
    "kraken",
    "okx",
    "bybit"
   ],
   "type": "string",
   "default": "binance",
   "description": "Exchange to read the tape from."
  },
  "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-raw-trade-tape-545131f1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from markt.halowerk.com](https://www.zero.xyz/host/markt.halowerk.com/llms.txt)
