Skip to main content

Documentation Index

Fetch the complete documentation index at: https://polynode.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Returns a unified feed of all non-trade events for a wallet, sorted by timestamp. Includes splits, merges, neg-risk conversions, and redemptions.

Request

GET /v3/wallets/{address}/activity

Query parameters

ParameterTypeDefaultDescription
afterintegerStart of time range (Unix timestamp)
beforeintegerEnd of time range
limitinteger100Max 1000
offsetinteger0Pagination offset

Example

curl https://api.polynode.dev/v3/wallets/0x56687bf447db6ffa42ffe2204a05edaa20f55839/activity?limit=1
{
  "columns": ["event_type", "id", "timestamp", "ref_id", "amount", "extra"],
  "rows": [
    [
      "redemption",
      "0x6db3f0fd9cccd58d4bd59eb5816cc2823f62a85c343e5ff6d1dd177dfb128a6e_0x109",
      "1731664609",
      "0x26ee82bee2493a302d21283cb578f7e2fff2dd15743854f53034d12420863b55",
      "120469388830",
      "{1,2}"
    ]
  ],
  "rows_returned": 1,
  "has_more": false,
  "elapsed_ms": 5
}

Response fields

FieldTypeDescription
event_typestringsplit, merge, nrc (neg-risk conversion), or redemption
idstringEvent ID
timestampstringUnix timestamp
ref_idstringCondition ID or neg-risk market ID
amountstringAmount (6-decimal USDC)
extrastringAdditional data (index_sets for redemptions, question_count for NRC)