New API users should migrate to deposit wallets. Read the migration guide.
curl --request GET \
--url https://clob.polymarket.com/rewards/user \
--header 'POLY_ADDRESS: <api-key>' \
--header 'POLY_API_KEY: <api-key>' \
--header 'POLY_PASSPHRASE: <api-key>' \
--header 'POLY_SIGNATURE: <api-key>' \
--header 'POLY_TIMESTAMP: <api-key>'{
"limit": 100,
"count": 1,
"next_cursor": "LTE=",
"data": [
{
"date": "2024-03-26T00:00:00Z",
"condition_id": "0xbd31dc8a20211944f6b70f31557f1001557b59905b7738480ca09bd4532f84af",
"asset_address": "0x9c4E1703476E875070EE25b56A58B008CFb8FA78",
"maker_address": "0xFeA4cB3dD4ca7CefD3368653B7D6FF9BcDFca604",
"earnings": 0.237519,
"asset_rate": 1
}
]
}Returns an array of user earnings per market for a provided day.
Requires CLOB L2 Auth headers.
Results are paginated (100 items per page). Use next_cursor to fetch subsequent pages. A next_cursor value of “LTE=” indicates the last page.
curl --request GET \
--url https://clob.polymarket.com/rewards/user \
--header 'POLY_ADDRESS: <api-key>' \
--header 'POLY_API_KEY: <api-key>' \
--header 'POLY_PASSPHRASE: <api-key>' \
--header 'POLY_SIGNATURE: <api-key>' \
--header 'POLY_TIMESTAMP: <api-key>'{
"limit": 100,
"count": 1,
"next_cursor": "LTE=",
"data": [
{
"date": "2024-03-26T00:00:00Z",
"condition_id": "0xbd31dc8a20211944f6b70f31557f1001557b59905b7738480ca09bd4532f84af",
"asset_address": "0x9c4E1703476E875070EE25b56A58B008CFb8FA78",
"maker_address": "0xFeA4cB3dD4ca7CefD3368653B7D6FF9BcDFca604",
"earnings": 0.237519,
"asset_rate": 1
}
]
}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.
Your API key
Ethereum address associated with the API key
HMAC signature of the request
API key passphrase
Unix timestamp of the request
Date in YYYY-MM-DD format
Signature type for address derivation (required for API KEY auth):
0, 1, 2 Maker address to query earnings for
If true, returns sponsored-only earnings
Pagination cursor from previous response
Successfully retrieved user earnings
Was this page helpful?