# BlockRun.AI Polymarket Wallet P&L

> BlockRun.AI Polymarket Wallet P&L is a paid API for AI agents from blockrun.ai, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns P&L summary and realized P&L time series for a given Polymarket wallet address

## Facts

- Endpoint: GET https://blockrun.ai/api/v1/pm/polymarket/wallet/pnl/:address
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/blockrun-ai-46742225
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SCw5k1Po-HxR3be7a118g

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-46742225
```

Example prompt: What's the P&L summary and realized profit/loss history for Polymarket wallet 0x1234abcd5678efgh on BlockRun?

## When to prefer this

Use this endpoint when you need financial performance data (P&L) for a specific Polymarket wallet, particularly the time series of realized gains/losses. Prefer this over the per-market breakdown endpoint when you want a holistic portfolio-level summary rather than individual market granularity.

## Known failure modes

- Invalid or malformed wallet address returns an error
- Wallet address with no Polymarket activity may return empty or zero data
- Payment required (402) if x402 micropayment of $0.005 USDC not included
- Rate limiting or upstream data unavailability may cause 5xx errors

## How this service works

Get P&L summary and realized P&L time series for a wallet

## Output

Returns a structured object containing a P&L summary (total realized gains/losses, win rate, etc.) and a time series of realized P&L data points for the specified Polymarket wallet address.

## 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-46742225/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)
