Skip to main content
GET
/
api
/
accounts
/
{accountId}
/
positions
Get Positions
curl --request GET \
  --url https://trade.predexon.com/api/accounts/{accountId}/positions \
  --header 'x-api-key: <api-key>'
{
  "positions": [
    {
      "venue": "<string>",
      "predexonId": "<string>",
      "title": "<string>",
      "outcome": "<string>",
      "size": "<string>",
      "status": "<string>",
      "result": "<string>",
      "averagePrice": "<string>",
      "currentPrice": "<string>",
      "currentValue": "<string>",
      "pnl": "<string>",
      "market": {
        "tokenId": "<string>",
        "marketId": "<string>",
        "ticker": "<string>",
        "outcome": "<string>",
        "marketSlug": "<string>"
      }
    }
  ],
  "_meta": {
    "venues": [
      {
        "venue": "<string>",
        "status": "ok"
      }
    ]
  }
}

Authorizations

x-api-key
string
header
required

Path Parameters

accountId
string
required

Query Parameters

venue
enum<string>
Available options:
polymarket,
predict,
opinion,
limitless

Response

Position list

positions
object[]
_meta
object

Per-plane status metadata on aggregated responses. Surfaces partial failures so clients can detect when a venue timed out or errored while others succeeded.