Skip to main content
GET /api/v1/positions Returns open positions for the authenticated user on the specified exchange.

Parameters

exchange
string
required
Exchange identifier: polymarket, kalshi, limitless, opinion, or predictfun.
market_id
string
Filter positions by a specific market ID. When omitted, returns all positions.

Response

success
boolean
Whether the request succeeded.
data
Position[]
# All positions
curl -H "X-API-Key: YOUR_API_KEY" \
  "https://api.parsecapi.com/api/v1/positions?exchange=polymarket"

# Filtered by market
curl -H "X-API-Key: YOUR_API_KEY" \
  "https://api.parsecapi.com/api/v1/positions?exchange=polymarket&market_id=0x1234abcd"
{
  "success": true,
  "data": [
    {
      "market_id": "0x1234abcd",
      "outcome": "Yes",
      "size": 150.0,
      "average_price": 0.55,
      "current_price": 0.65
    },
    {
      "market_id": "0x5678efgh",
      "outcome": "No",
      "size": 75.0,
      "average_price": 0.80,
      "current_price": 0.72
    }
  ]
}