Skip to main content
GET
/
api
/
accounts
/
{accountId}
/
orders
Get Orders
curl --request GET \
  --url https://trade.predexon.com/api/accounts/{accountId}/orders \
  --header 'x-api-key: <api-key>'
{
  "orders": [
    {
      "orderId": "<string>",
      "venue": "<string>",
      "predexonId": "<string>",
      "side": "<string>",
      "outcome": "<string>",
      "status": "open",
      "createdAt": "<string>",
      "size": "<string>",
      "price": "<string>",
      "filled": "<string>",
      "market": {
        "tokenId": "<string>",
        "marketId": "<string>",
        "ticker": "<string>",
        "outcome": "<string>",
        "marketSlug": "<string>"
      },
      "fee": {
        "policyApplied": true,
        "feeBps": 123,
        "platformFeeBps": 123,
        "partnerFeeBps": 123,
        "grossAmount": "<string>",
        "netOrderAmount": "<string>",
        "maxFeeReserved": "<string>"
      },
      "message": "<string>"
    }
  ],
  "_meta": {
    "venues": [
      {
        "venue": "<string>",
        "status": "ok"
      }
    ]
  }
}
Opinion does not return tokenId on order queries — the market bag contains marketId only. Placement responses include both.

Authorizations

x-api-key
string
header
required

Path Parameters

accountId
string
required

Query Parameters

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

Response

Order list

orders
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.