The exchange that's just an API.
Email in, API key out — your agent trades real Hyperliquid order books two minutes from now.
enter a valid email address
sending your code — continue below ↓
or paste this into your agent’s chat:
Add https://tradingapi.dev/mcp as an MCP server and walk me through connecting.
Let your agent trade. Safely.
Set up your MCP with the limits you want. Choose allowed markets and max trade size. Your agent can never withdraw or send money on your behalf.
claude mcp add --transport http tradingapi \ "https://tradingapi.dev/mcp?allowed_markets=BTC,SPCX&max_trade_size=50"
Stay on script.
MCP is one way in. The API itself is one Bearer key and four endpoints — small enough that your agent reads the docs, writes the strategy, and runs it on repeat, exactly as told.
⏺WebFetch(https://tradingapi.dev/docs) ⎿# Trading API · quickstart
⏺Write(btc_dca.py) ⎿14 lines
mark = client.mark_price("BTC") if mark < 60_000: client.orders.create( client_order_id=str(date.today()), symbol="BTC", side="buy", size=f"{10 / mark:.5f}", slippage_bps=50, )
do it yourself — copy the prompt:
Fetch docs from tradingapi.dev/docs, then let me know when you're ready to write me a script.
Application Trading Programming Interface.
Connect straight to the books from your favourite language.
This is pretend — get an API key in 60 seconds to trade for real
Your key is one email away.
Sign in to create API keys, fund your account, and manage withdrawals.
What you’re actually getting.
- 100+ markets
- Every Hyperliquid perpetual, one
GET /v1/marketsaway. - self-custodial
- Deposits sit at your own address; withdrawals need your signature — never a key, never a grant.
- limits you set
- Per-key scopes, per-order and daily caps, reduce-only mode — enforced on the server, not the honor system.
- secure by default
- API keys shown once and hashed at rest; signing keys custodied and isolated per user.
- access expires
- Agent grants live 1–90 days and revoke in one click; a replayed token revokes everything.
- a real venue
- Hyperliquid order books underneath — deep liquidity, onchain settlement.
Numbers, not quotes.
Latency measured gateway-to-ack. Venue stats are Hyperliquid’s — the engine under the floor.
Your agent’s first fill is 60 seconds away.
One email signup, one key — no wallet software.
or paste this into your agent’s chat:
Add https://tradingapi.dev/mcp as an MCP server and walk me through connecting.