Matching engine as a service

Your product lives between the bid and the ask. We run everything else.

Clobber is a hosted central limit order book. Create markets with a POST, accept orders in microseconds, stream fills over WebSocket. No exchange team required.

$ curl -X POST https://api.clobber.dev/v1/markets
WILL-IT-RAIN-BA · YES/NO matching live
PriceSizeTotal
spread0.02last 0.61
The API

An exchange in four calls.

Everything a venue needs: markets, accounts, orders, settlement. Deterministic matching, price-time priority, an internal ledger that always balances.

POST /markets

Create a market

Binary outcomes, currency pairs, or anything with a price. Tick size, fees and limits are yours to set.

POST /orders

Send orders

Limit, market, IOC, FOK. Idempotency keys built in, acks in under a millisecond.

WS /feed

Stream everything

Book deltas, trades and fills per account, sequenced so you never miss an event.

POST /resolve

Settle the outcome

Declare the result and every position settles atomically against the internal ledger.

 create → trade → settle
# 1. a market for anything
POST /v1/markets
{ "symbol": "WILL-IT-RAIN-BA",
  "kind": "binary",
  "tick_size": "0.01" }

# 2. a limit order
POST /v1/orders
{ "market": "WILL-IT-RAIN-BA",
  "side": "buy",
  "type": "limit",
  "price": "0.61",
  "qty": "250" }

# 3. fills, as they happen
WS wss://feed.clobber.dev
← { "event": "fill", "px": "0.61",
    "qty": "250", "seq": 48210 }
Who builds on Clobber

Real order books, without the exchange team.

Anywhere users should trade against each other instead of against a house price.

Prediction markets

Event trading venues

Launch a CLOB-based prediction market in days. Binary contracts, probability pricing, atomic settlement on resolution.

Fan & community apps

Play-money markets

Let your audience predict with points or credits. Price discovery is the engagement loop; no real money, no licensing.

Marketplaces

Price discovery for anything

Game items, GPU hours, tickets, carbon credits. Replace fixed prices with a continuous double auction.

Pricing

Free until your users show up.

Self-serve with a card. No sales calls unless you want one.

Sandbox
$0
forever
  • Unlimited test markets
  • Full API + WebSocket feeds
  • Shared infrastructure
  • Community support
Get a key
Production
$99
per month + usage
  • 10 live markets included
  • 1M orders/month, then $5 per extra million
  • 99.9% uptime SLA
  • Webhooks + email support
Go live
Dedicated
$1,500
per month
  • Isolated engine, your region
  • Unlimited markets and orders
  • 99.99% uptime SLA, hot standby
  • Slack channel with the founder
Talk to us
Built to stay up

Boring numbers, on purpose.

A deterministic engine, every command journaled, replicas replaying the same log. Failover is a replay, not a fire drill. A public status page is on the way.

99.99%
uptime, trailing 90 days
< 1 ms
order ack, p99
150 ns
per match, engine core
0
ledger discrepancies, ever
Get in touch

Request your key.

Tell us what you're building and we'll get back to you. Sandbox keys usually ship the same day; dedicated engines within a week.

Prefer email? Write to guillermo@doghel.com.ar

The book is open.

First market live in an afternoon. Bring your own product; we'll match the orders.

Start in the sandbox