# BlockRun.AI Polymarket Wallet Positions

> BlockRun.AI Polymarket Wallet Positions is a paid API for AI agents from blockrun.ai, paid per call via x402, $0.005000/call, status unknown (last checked 2026-09-16).

Retrieves open and historical prediction market positions for a given wallet address on Polymarket

## Facts

- Endpoint: GET https://blockrun.ai/api/v1/pm/polymarket/wallet/positions/:address
- Price: $0.005000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/blockrun-ai-1dffc833
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UTrlEJQdu0nRN61Zqu4ba

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 blockrun-ai-1dffc833
```

Example prompt: What are all the open and historical Polymarket positions for wallet address 0x1234abcd...? I want to see every prediction market they've held shares in.

## When to prefer this

Use this endpoint when you need to look up a specific wallet's Polymarket positions — both currently open and historical — especially within an agent workflow analyzing prediction market portfolios, tracking trader behavior, or auditing on-chain prediction market activity. Prefer this over generic blockchain explorers when you specifically need structured Polymarket position data.

## Known failure modes

- Invalid or malformed wallet address returns an error
- Wallet address with no Polymarket activity may return empty positions array
- Network timeout or upstream Polymarket data unavailability
- Rate limiting if too many requests are made in quick succession
- Payment failure if x402 USDC payment is not correctly handled

## How this service works

Get open and historical positions for a wallet address

## Output

Returns a data object containing the wallet's open and historical positions on Polymarket, including market details, position sizes, and relevant metadata for each prediction market the wallet has participated in.

## Example request

```json
{
 "input": {
  "body": {
   "address": "0x1234567890123456789012345678901234567890"
  }
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "query": {
     "type": "object",
     "required": [],
     "properties": {}
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "example": {
     "type": "object",
     "properties": {
      "data": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/blockrun-ai-1dffc833/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from blockrun.ai](https://www.zero.xyz/host/blockrun.ai/llms.txt)
