GET
/
v1
/
predictions
/
polymarket
/
positions
/
{address}
Get Positions
curl --request GET \
  --url https://api.example.com/v1/predictions/polymarket/positions/{address}

Request

address
string
required
Wallet address

Example

curl -H "X-API-Key: $API_KEY" \
  https://api.perps.studio/v1/predictions/polymarket/positions/0x1234...
Example Response
[
  {
    "marketId": "0xabc123",
    "tokenId": "71234",
    "outcome": "Yes",
    "size": "500",
    "avgPrice": "0.68",
    "currentPrice": "0.72",
    "unrealizedPnl": "20.00"
  }
]