Connecting

See what you
can build.

This entire page is powered by the Arbiter API. Every chart, trade, and price update comes from the same endpoints available to you.

Build trading dashboards in minutes

Everything below — the candlestick chart, the live trade feed, the market selector — is one API call each. Build trading bots, analytics dashboards, or portfolio trackers without stitching together multiple data sources.

Loading markets...

Select a market to view charts

Recent Trades
PriceSizeSideTime
No trades available

Spot arbitrage across platforms

Prediction markets price the same event differently. A 3¢ spread on a million-dollar market is real money. Arbiter finds these gaps for you — build alerting systems, arbitrage bots, or cross-platform analytics.

Ship in an afternoon

No scraping. No managing multiple API keys. No normalizing data formats. We handle the infrastructure so you can focus on what you love — building.

app.ts
import { ArbiterClient } from '@arbiter/sdk';

const client = new ArbiterClient({
  apiKey: process.env.ARBITER_KEY
});

const markets = await client.markets.list();
const candles = await client.markets.candles(id);
const trades  = await client.markets.trades(id);