Polymarket Get Activity logo

Catalog action Utility wallet

Get prediction-market activity (trades and redemptions) for the authenticated user's Polymarket deposit wallet from the public Polymarket Data API. Supports time-range and limit. Ideal for: unified wallet activity feeds, trade and redemption history.

At a Glance

FieldValue
Action IDpolymarket-get-activity
CategoryUtility
Connectorwallet
Requires gasNo
Funds movementNone declared
Tagspolymarket, activity, trades, history, read

Payload Schema

FieldTypeRequiredDescription
startTimenumberNoOnly return activity at/after this Unix timestamp in milliseconds
endTimenumberNoOnly return activity at/before this Unix timestamp in milliseconds
limitnumberNoMaximum number of activity entries to return (1-500, default 100)
typesstringNoComma-separated activity types to fetch (default 'TRADE,REDEEM')
offsetnumberNoNumber of activity entries to skip for pagination (default: 0)
sortDirstringNoSort direction by timestamp (default 'DESC' — newest first)

Result Schema

FieldTypeRequiredDescription
activityarrayYesNormalized Polymarket activity entries (trades and redemptions)
countnumberYesNumber of activity entries returned

Examples

json
{ "type": "polymarket-get-activity", "payload": { "startTime": 1, "endTime": 1, "limit": 1, "types": "example-types", "offset": 1 }, "children": [], "connector": { "type": "wallet", "id": "conn_wallet" }}

Payload fields can use workflow expressions such as {{$trigger.body.amount}}, {{$nodes.fetch.result.price}}, and {{$props.asset}} when the value should come from a trigger, prior node, or reusable workflow prop.