Skip to main content
GET
Get Activities

Authorizations

X-PM-Access-Key
string
header
required

Your API key ID (UUID). Generate at polymarket.us/developer.

X-PM-Timestamp
string
header
required

Unix timestamp in milliseconds. Must be within 30 seconds of server time.

X-PM-Signature
string
header
required

Base64-encoded Ed25519 signature of timestamp + method + path. See Authentication for details.

Query Parameters

limit
integer<int32>

Maximum number of activities to return per page. Use with cursor for pagination. Default: 100. Example: 50

cursor
string

Pagination cursor from a previous response's nextCursor field. Use to fetch the next page of results. Omit for the first request

marketSlug
string

Filter activities by a specific market slug. Returns only activities (trades, resolutions) related to that market. Example: will-team-a-win

types
enum<string>[]

Filter by activity types. When specified, only returns activities of the selected types. TRADE (order executions), POSITION_RESOLUTION (market settlements), ACCOUNT_DEPOSIT/WITHDRAWAL (fund transfers)

Available options:
ACTIVITY_TYPE_TRADE,
ACTIVITY_TYPE_POSITION_RESOLUTION,
ACTIVITY_TYPE_ACCOUNT_DEPOSIT,
ACTIVITY_TYPE_ACCOUNT_ADVANCED_DEPOSIT,
ACTIVITY_TYPE_ACCOUNT_WITHDRAWAL,
ACTIVITY_TYPE_REFERRAL_BONUS,
ACTIVITY_TYPE_TRANSFER,
ACTIVITY_TYPE_TAKER_FEE_REBATE,
ACTIVITY_TYPE_LIQUIDITY_PROGRAM
sortOrder
enum<string>

Sort order for activities by timestamp. DESCENDING returns newest first (default), ASCENDING returns oldest first

Available options:
SORT_ORDER_DESCENDING,
SORT_ORDER_ASCENDING

Response

List of activities

activities
object[]

List of activities

nextCursor
string

Pagination cursor for next page

eof
boolean

True if this is the last page