Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.polymarket.us/llms.txt

Use this file to discover all available pages before exploring further.

Looking for Polymarket International documentation?Visit International Docs →

Polymarket US 🇺🇸 Documentation

Build on the world’s largest prediction market.

Developer Quickstart

Make your first API request in minutes. Learn the basics of the Polymarket US platform, fetch market data, place orders, and redeem winning positions.

import { PolymarketUS } from 'polymarket-us';

const client = new PolymarketUS({
  keyId: process.env.POLYMARKET_KEY_ID,
  secretKey: process.env.POLYMARKET_SECRET_KEY,
});

const order = await client.orders.create({
  marketSlug: 'chiefs-super-bowl-lx',
  intent: 'ORDER_INTENT_BUY_LONG',
  type: 'ORDER_TYPE_LIMIT',
  price: { value: '0.55', currency: 'USD' },
  quantity: 100,
  tif: 'TIME_IN_FORCE_GOOD_TILL_CANCEL',
});

Get Familiar with Polymarket US

Learn the fundamentals, explore our APIs, and start building on the world’s largest prediction market.

Quickstart

Set up your environment and make your first API call in minutes.

Core Concepts

Understand markets, events, and how trading works.

API Reference

Explore REST endpoints, WebSocket streams, and authentication.

SDKs

Official Python and TypeScript libraries for faster development.