# Quotient Portfolio Intelligence

> Quotient Portfolio Intelligence is a paid API for AI agents from quotient-api-gateway.onrender.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-13).

Enriches a Polymarket wallet's open positions with Quotient's probability forecasts, trade signals, and convergence analysis to inform hold/sell decisions

## Facts

- Endpoint: GET https://quotient-api-gateway.onrender.com/api/v1/portfolio
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/quotient-portfolio-intelligence-3e500ef4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oTl7BClYa4EIhLtj_DJKw

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 quotient-portfolio-intelligence-3e500ef4
```

Example prompt: Can you pull up my Polymarket portfolio for wallet 0xABC123 and show me which open positions Quotient still agrees with, flagging anything I should consider selling based on their latest forecasts?

## When to prefer this

Use this endpoint when you need a holistic view of a specific Polymarket wallet's open positions enriched with Quotient's independent intelligence — combining PnL data with forward-looking probability forecasts and trade signals in one call. Prefer this over individual market lookups when the user wants portfolio-level hold/sell guidance rather than analysis of a specific market.

## Known failure modes

- Invalid or unrecognized wallet address returns empty or error response
- Wallet with no open positions returns an empty positions array
- Network timeout from Render-hosted service under cold-start conditions
- size_threshold misconfiguration filters out all positions resulting in empty results
- Payment of 0.001 USDC not provided or rejected, returning 402 error

## How this service works

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.

## Output

Returns a list of open Polymarket positions for the given wallet, each enriched with Quotient's current probability forecast, published trade signal (YES/NO, conviction), convergence analysis against the position's side, position size, average entry price, current market price, unrealized PnL, and a hold/sell indicator based on whether Quotient still agrees with the position. Optionally includes perpetuals positions.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input",
  "output"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "queryParams"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "venues": {
       "type": "string"
      },
      "wallet": {
       "type": "string"
      },
      "include_perps": {
       "type": "boolean",
       "default": false
      },
      "size_threshold": {
       "type": "number",
       "default": 1,
       "minimum": 0
      },
      "limitless_wallet": {
       "type": "string"
      },
      "polymarket_wallet": {
       "type": "string"
      },
      "hyperliquid_wallet": {
       "type": "string"
      },
      "polymarket_perps_wallet": {
       "type": "string"
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/quotient-portfolio-intelligence-3e500ef4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from quotient-api-gateway.onrender.com](https://www.zero.xyz/host/quotient-api-gateway.onrender.com/llms.txt)
