# Polymarket Wallet Activity Feed

> Polymarket Wallet Activity Feed is a paid API for AI agents from 2s.io, paid per call via x402, $0.012/call, status unknown (last checked 2026-09-15).

Returns a wallet's on-chain Polymarket activity feed (trades, merges, splits, redeems, conversions, rewards) in reverse-chronological order

## Facts

- Endpoint: GET https://2s.io/api/predict/activity
- Price: $0.012/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/polymarket-wallet-activity-feed-cccef550
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HT6MCH5nzITDYbnNnrxRB

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-feed-cccef550
```

Example prompt: Pull the last 100 TRADE events from Polymarket's on-chain activity feed for wallet address 0x1234abcd...5678 so I can see what markets they've been buying and selling in.

## When to prefer this

Use this endpoint when you need a detailed, chronological record of a specific wallet's Polymarket on-chain actions — including trades, position management (splits/merges), redemptions, and rewards. Prefer it over market-level endpoints when the question is wallet-centric rather than market-centric. Ideal for portfolio analysis, wallet profiling, or auditing a trader's history on Polymarket.

## Known failure modes

- Missing required 'address' parameter returns a 400 or validation error
- Invalid or unrecognized wallet address returns empty results or 404
- Invalid 'type' enum value returns a 400 validation error
- Limit out of range (>500 or <1) returns a 400 error
- Wallet with no Polymarket activity returns an empty list
- Payment not included or insufficient USDC (x402) returns 402 Payment Required

## How this service works

A wallet's Polymarket on-chain activity feed: trades, merges, splits, redeems, conversions and rewards, newest first. Pass the wallet (proxy) address; optionally filter by type (TRADE/MERGE/SPLIT/REDEEM/REWARD/CONVERSION) and cap with limit. Each entry returns type, side, outcome, share size, price, USD value, timestamp, the market title/slug, conditionId, and tx hash. Read-only from Polymarket's Data API.

## Output

A list of on-chain activity entries for the wallet, each including: activity type (TRADE/MERGE/SPLIT/REDEEM/REWARD/CONVERSION), trade side (BUY/SELL), outcome, share size, price per share, USD value, timestamp, market title, market slug, conditionId, and transaction hash — ordered newest first.

## 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",
    "queryParams"
   ],
   "properties": {
    "type": {
     "const": "http"
    },
    "method": {
     "const": "GET"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "type": {
       "enum": [
        "TRADE",
        "MERGE",
        "SPLIT",
        "REDEEM",
        "REWARD",
        "CONVERSION"
       ],
       "type": "string",
       "description": "Filter by activity type."
      },
      "limit": {
       "type": "integer",
       "maximum": 500,
       "minimum": 1,
       "description": "Max events (default 50)."
      },
      "address": {
       "type": "string",
       "maxLength": 60,
       "minLength": 8,
       "description": "Wallet (proxy) address."
      }
     },
     "additionalProperties": false
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/polymarket-wallet-activity-feed-cccef550/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 2s.io](https://www.zero.xyz/host/2s.io/llms.txt)
