Skip to main content

Base URL

https://api.limitless.exchange
Interactive API explorer (Scalar): https://api.limitless.exchange/api-v1

Authentication

Most endpoints require the X-API-Key header. Generate a key at limitless.exchange → profile menu → Api keys.
curl -H "X-API-Key: lmts_your_key_here" \
  https://api.limitless.exchange/markets/active
Public endpoints like market browsing and orderbook data do not require authentication.
See the Authentication guide for full details.

Endpoint Groups

Key Concepts

ConceptDescription
Venue systemEach CLOB market has a venue with exchange and adapter addresses. Fetch via GET /markets/:slug. See Venue System.
EIP-712 signingOrders are signed using the venue’s exchange address as verifyingContract. See EIP-712 Signing.
Order typesGTC (Good Till Cancelled) stays on the orderbook. FOK (Fill or Kill) executes immediately or cancels.
Token IDsEach market has YES and NO position IDs returned in positionIds. Use these as tokenId in orders.
USDC decimalsUSDC on Base has 6 decimals. Amounts are scaled by 1e6.

WebSocket API

For real-time orderbook and position updates, see the WebSocket Events reference. URL: wss://ws.limitless.exchange | Namespace: /markets

Rate Limits

LimitValue
Max concurrent requests2
Min delay between calls300ms
Exceeding rate limits will return 429 Too Many Requests. Use exponential backoff or the SDK’s built-in retry mechanisms. Contact hey@limitless.network for higher limits.