2026-02-14 12:59:26 +01:00
> ## Documentation Index
> Fetch the complete documentation index at: https://docs.polymarket.com/llms.txt
> Use this file to discover all available pages before exploring further.
2026-02-19 14:31:02 +01:00
# Introduction
2026-02-14 12:59:26 +01:00
2026-02-19 14:31:02 +01:00
> Overview of the Polymarket APIs
2026-02-14 12:59:26 +01:00
2026-02-19 14:31:02 +01:00
The Polymarket API provides programmatic access to the world's largest prediction market. The platform is served by three separate APIs, each handling a different domain.
2026-02-14 12:59:26 +01:00
** *
2026-02-19 14:31:02 +01:00
## APIs
2026-02-14 12:59:26 +01:00
2026-02-19 14:31:02 +01:00
<CardGroup cols={1}>
<Card title="Gamma API" icon="database">
** `https://gamma-api.polymarket.com` **
2026-02-14 12:59:26 +01:00
2026-02-19 14:31:02 +01:00
Markets, events, tags, series, comments, sports, search, and public profiles. This is the primary API for discovering and browsing market data.
</Card>
2026-02-14 12:59:26 +01:00
2026-02-19 14:31:02 +01:00
<Card title="Data API" icon="chart-line">
** `https://data-api.polymarket.com` **
2026-02-14 12:59:26 +01:00
2026-02-19 14:31:02 +01:00
User positions, trades, activity, holder data, open interest, leaderboards, and builder analytics.
</Card>
2026-02-14 12:59:26 +01:00
2026-02-19 14:31:02 +01:00
<Card title="CLOB API" icon="arrows-rotate">
** `https://clob.polymarket.com` **
2026-02-14 12:59:26 +01:00
2026-02-19 14:31:02 +01:00
Orderbook data, pricing, midpoints, spreads, and price history. Also handles order placement, cancellation, and other trading operations. Trading endpoints require [authentication ](/api-reference/authentication ).
</Card>
</CardGroup>
2026-02-14 12:59:26 +01:00
2026-02-19 14:31:02 +01:00
<Info>
A separate **Bridge API** (`https://bridge.polymarket.com` ) handles deposits and withdrawals. Bridges are not handled by Polymarket, it is a proxy of fun.xyz service.
</Info>
2026-02-14 12:59:26 +01:00
2026-02-19 14:31:02 +01:00
** *
2026-02-14 12:59:26 +01:00
2026-02-19 14:31:02 +01:00
## Authentication
2026-02-14 12:59:26 +01:00
2026-02-19 14:31:02 +01:00
The Gamma API and Data API are fully public — no authentication required.
2026-02-14 12:59:26 +01:00
2026-02-19 14:31:02 +01:00
The CLOB API has both public endpoints (orderbook, prices) and authenticated endpoints (order management). See [Authentication ](/api-reference/authentication ) for details.
2026-02-14 12:59:26 +01:00
2026-02-19 14:31:02 +01:00
** *
2026-02-14 12:59:26 +01:00
2026-02-19 14:31:02 +01:00
## Next Steps
2026-02-14 12:59:26 +01:00
2026-02-19 14:31:02 +01:00
<CardGroup cols={2}>
<Card title="Authentication" icon="key" href="/api-reference/authentication">
Learn how to authenticate requests for trading endpoints.
</Card>
2026-02-14 12:59:26 +01:00
2026-02-19 14:31:02 +01:00
<Card title="Clients & SDKs" icon="cube" href="/api-reference/clients-sdks">
Official TypeScript, Python, and Rust libraries.
</Card>
</CardGroup>