Skip to main content
GET
/
v2
/
polymarket
/
activity
Get Activity
curl --request GET \
  --url https://api.predexon.com/v2/polymarket/activity \
  --header 'x-api-key: <api-key>'
{
  "activities": [
    {
      "side": "MERGE",
      "market_slug": "<string>",
      "condition_id": "<string>",
      "shares": 123,
      "shares_normalized": 123,
      "amount_usd": 123,
      "price": 123,
      "tx_hash": "<string>",
      "title": "<string>",
      "timestamp": 123,
      "user": "<string>",
      "market_id": "<string>"
    }
  ],
  "pagination": {
    "limit": 123,
    "count": 123,
    "has_more": true,
    "pagination_key": "<string>"
  }
}
Query trading activity for a wallet. Includes SPLIT (deposit collateral to create YES+NO pairs), MERGE (combine pairs back to collateral), and REDEEM (redeem winning tokens after resolution).
Free & Unlimited. This endpoint does not count toward your monthly usage limits on any plan.
ConstraintValue
limit1–500 (default 100)
offsetNo limit

Authorizations

x-api-key
string
header
required

Query Parameters

wallet
string
required

Wallet address

start_time
integer | null

Unix timestamp (seconds) for start

end_time
integer | null

Unix timestamp (seconds) for end

market_slug
string | null

Filter by market slug

condition_id
string | null

Filter by condition ID

sort_by
enum<string>
default:timestamp

Sort by: timestamp or type

Available options:
timestamp,
type
limit
integer
default:100

Number of activities to return (1-500)

Required range: 1 <= x <= 500
order
enum<string>
default:desc

Sort order: asc or desc

Available options:
asc,
desc
pagination_key
string | null

Pagination key for cursor-based pagination

Response

Successful Response

Activity endpoint response.

activities
Activity · object[]
required
pagination
CursorPagination · object
required

Cursor-based pagination for endpoints that don't support offset.