Polymarket full PnL report
Polymarket full PnL report. POST {wallet}. Returns derived skill metrics plus per-position aggregates: net position, average buy price, current price, realized and mark-to-market unrealized PnL per market. For agents that need position-level detail to audit, debug, or feed into a deeper reputation signal.
50000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-12
updated
Provider
graphadvocate.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x0FF5A6ecef783BBA35463ec2F8403B9B5e9e7C86",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "50000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"wallet": "0x38e598961dd0456a7fb2e758bd433d3e59fb8a4a"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"positions": [
{
"active": true,
"avg_buy_price": 0.31,
"buys": 4,
"condition_id": "0xabc…",
"current_price": 0.44,
"market_slug": "will-x-happen-by-eoy",
"net_position": 500,
"outcome": "Yes",
"pnl_pct": 41.9,
"realized_pnl_usdc": 12.5,
"sells": 1,
"total_pnl_usdc": 77.5,
"unrealized_pnl_usdc": 65
}
],
"scores": {
"classification": "sharp",
"sample_size": 213,
"skill_score": 71.4
},
"wallet": "0x38e5..."
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"wallet": {
"type": "string"
}
},
"required": [
"wallet"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://graphadvocate.com/polymarket/pnl" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://graphadvocate.com/polymarket/pnl");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://graphadvocate.com/polymarket/pnl")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/5014.json, and this resource appears in /discovery/resources and /discovery/search.