Skip to main content

Overview

The CLOB (Central Limit Order Book) is Polymarket’s order matching system. Order attribution adds builder authentication headers when placing orders through the CLOB Client, enabling Polymarket to credit trades to your builder account. This allows you to:
  • Track volume on the Builder Leaderboard
  • Compete for grants based on trading activity
  • Monitor performance via the Data API

Builder API Credentials

Each builder receives API credentials from their Builder Profile:
CredentialDescription
keyYour builder API key identifier
secretSecret key for signing requests
passphraseAdditional authentication passphrase
Security Notice: Your Builder API keys must be kept secure. Never expose them in client-side code.

Signing Methods


Authentication Headers

The SDK automatically generates and attaches these headers to each request:
HeaderDescription
POLY_BUILDER_API_KEYYour builder API key
POLY_BUILDER_TIMESTAMPUnix timestamp of signature creation
POLY_BUILDER_PASSPHRASEYour builder passphrase
POLY_BUILDER_SIGNATUREHMAC signature of the request
With local signing, the SDK constructs and attaches these headers automatically. With remote signing, your server must return these headers (see Server Implementation above), and the SDK attaches them to the request.

Next Steps