Overview
This guide walks you through:- Creating a Carboncopy account
- Generating an API key
- Making your first request
- Iterating from there
Step 1 — Create an account
Head to carboncopy.inc and sign in with your email. Once authenticated, connect your Polymarket wallet under Settings.Step 2 — Generate an API key
Navigate to Settings → API Keys in the Dashboard, then click New Key. Configure the scopes you need — for a read-only monitoring bot,portfolio:read and traders:read are sufficient. For a bot that can follow/unfollow traders, also add traders:write.
The key secret (
cc_<64 hex chars>) is shown exactly once at creation time. Copy it to your password manager or secrets store immediately.Step 3 — Make your first request
Verify the API is reachable (no auth required):Step 4 — Follow a trader
To start copying a wallet, your key needstraders:write scope:
0xAbCd1234..., up to a maximum of $500 USDC per trade.
Step 5 — Monitor your positions
Poll open positions to track what’s currently deployed:Next steps
Authentication
Learn about API key scopes and security.
API Reference
Full interactive endpoint documentation.
Errors
Handle errors gracefully in your bot.
Pagination
Iterate over large result sets with cursors.

