# Polymarket Wallet Activity Tracker

> Polymarket Wallet Activity Tracker is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Fetches recent Polymarket activity for a given wallet address, including trades, splits, merges, and redeems with timestamps, market details, and amounts.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/polymarket-wallet-activity
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/polymarket-wallet-activity-tracker-104b22f6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_U627IvsCXuJ5_YuXHmw1A

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability polymarket-wallet-activity-tracker-104b22f6 -d '<json body>'
```

Example prompt: Can you pull the recent Polymarket activity for wallet 0xABC123...? I want to see their trades, splits, merges, and redeems with timestamps and amounts.

## When to prefer this

Use this endpoint when you need on-chain Polymarket activity data for a specific wallet address and want a structured breakdown of event types (trades, splits, merges, redeems) with amounts and timestamps. Prefer this over generic blockchain explorers when you specifically need Polymarket-parsed, human-readable event data without having to decode raw contract logs.

## Known failure modes

- Invalid or malformed wallet address returns an error or empty result
- Wallet with no Polymarket activity returns an empty array
- Rate limiting or payment failure due to x402 protocol issues
- Polymarket API upstream downtime causing unavailable data
- Network timeout for wallets with very large activity histories

## How this service works

Recent Polymarket activity for a wallet: trades, splits, merges, redeems with timestamps, market and amounts. Track a trader's footprint. Free Polymarket Data API.

## Output

Returns a list of recent Polymarket wallet events including trades (buy/sell), splits, merges, and redeems — each with a timestamp, the associated market, and the token amounts involved.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/polymarket-wallet-activity-tracker-104b22f6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
