Wallet-addressed positions across Polymarket, Polymarket perps, Limitless, and Hyperliquid
Wallet-addressed positions across Polymarket, Polymarket perps, Limitless, and Hyperliquid, each prediction-market position joined to Quotient's forecast, signal, and a pricing read against the position's own side. Use this for wallet size, prices, PnL, and Q alignment. venues=all covers every venue; omitting venues keeps the legacy Polymarket-only shape. Kalshi and Polymarket US are absent only for lack of a keyless wallet read, not a limit on Quotient coverage.
5000 (raw units)
price
3
calls / 30d
2
unique payers
2026-09-11
updated
Provider
quotient-api-gateway.onrender.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xC3d01FD2F79d4c57aD106AB8ecc12a5dE24F97cB",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "5000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"discoverable": true,
"info": {
"input": {
"method": "GET",
"queryParams": {
"size_threshold": 1,
"venues": "polymarket,limitless,hyperliquid",
"wallet": "0xEE4E0EB3A626713F5Efa98DB422fA73FdD1e94b8"
},
"type": "http"
},
"output": {
"example": {
"as_of": "2026-08-01T16:03:11Z",
"covered_count": 4,
"positions": [
{
"avg_price": 0.58,
"cash_pnl": 7.23,
"cur_price": 0.64,
"current_value_usd": 77.12,
"outcome": "No",
"percent_pnl": 10.34,
"quotient": {
"convergence": {
"aligned": true,
"converge_upside_pct": 11,
"current_cost_cents": 64,
"distance_to_convergence_cents": 7,
"max_roi_pct": 56,
"q_side": "NO",
"q_value_cents": 71
},
"covered": true,
"forecast": {
"bluf": "Negotiation preconditions have hardened; no credible path to a 2026 ceasefire.",
"conviction_tier": 3,
"delta_from_prior": -0.04,
"id": "fc_9f2c1a",
"probability": 0.29,
"thesis": "Negotiation preconditions have hardened, leaving no credible path to a 2026 ceasefire."
},
"signal": {
"id": "qs_a41d2c",
"is_active": true,
"side": "NO"
}
},
"size": 120.5,
"slug": "russia-x-ukraine-ceasefire-in-2026",
"title": "Russia x Ukraine ceasefire in 2026?"
}
],
"positions_capped": false,
"positions_count": 6,
"unmatched": [],
"unmatched_count": 2,
"value_usd": 1243.87,
"wallet": "0xee4e0eb3a626713f5efa98db422fa73fdd1e94b8"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"additionalProperties": false,
"properties": {
"hyperliquid_wallet": {
"type": "string"
},
"include_perps": {
"default": false,
"type": "boolean"
},
"limitless_wallet": {
"type": "string"
},
"polymarket_perps_wallet": {
"type": "string"
},
"polymarket_wallet": {
"type": "string"
},
"size_threshold": {
"default": 1,
"minimum": 0,
"type": "number"
},
"venues": {
"type": "string"
},
"wallet": {
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"queryParams"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input",
"output"
],
"type": "object"
}
},
"payment-identifier": {
"info": {
"required": false
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"id": {
"maxLength": 128,
"minLength": 16,
"pattern": "^[a-zA-Z0-9_-]+$",
"type": "string"
},
"required": {
"type": "boolean"
}
},
"required": [
"required"
],
"type": "object"
}
}
}Use it
curl
curl "https://quotient-api-gateway.onrender.com/api/v1/portfolio" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://quotient-api-gateway.onrender.com/api/v1/portfolio");
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://quotient-api-gateway.onrender.com/api/v1/portfolio")
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/3291.json, and this resource appears in /discovery/resources and /discovery/search.