PAPI

Getting Started

From signup to your first API call in 5 minutes

Getting Started

Create an account

Sign up at the PAPI Dashboard with email/password, Google, or GitHub. You'll land on the waitlist; once approved, you can create API keys from the dashboard.

Create an API key

Once your account is active, create an API key from the dashboard. The key is shown once — save it immediately.

Keys are granted the read scope by default, which covers all market data, wallet reads, and cross-exchange analytics endpoints.

Make your first request

curl -s "https://api.papi.market/polymarket/markets?limit=2&status=open" \
  -H "X-API-Key: <your-api-key>"
[
  {
    "market_id": "0x1234...",
    "title": "Will Bitcoin exceed $100k?",
    "outcomes": [
      { "outcome_id": "712345", "label": "Yes", "price": "0.72" },
      { "outcome_id": "712346", "label": "No", "price": "0.28" }
    ],
    "volume_24h": "150000.00",
    "status": "open",
    "exchange": "Polymarket"
  }
]

Next steps

On this page