Skip to main content
GET
/
v2
/
clob
/
orders
/
{orderId}
curl https://api.pmx.trade/v2/clob/orders/b2c3d4e5-...
{
  "order": {
    "id": "b2c3d4e5-...",
    "marketId": "550e8400-...",
    "ownerPubkey": "7xKXabc123...",
    "side": "buy",
    "outcome": "yes",
    "priceBps": 5500,
    "originalQuantity": "50000000",
    "remainingQuantity": "20000000",
    "committedAmount": "11000000",
    "status": "partially_filled",
    "orderType": "limit",
    "timeInForce": "gtc",
    "createdAt": "2025-01-15T12:00:00.000Z",
    "updatedAt": "2025-01-15T12:05:00.000Z"
  }
}
Returns full details for a single order. This endpoint is public — any order can be looked up by ID.

Path parameters

orderId
string
required
The order UUID.

Response

order
object
curl https://api.pmx.trade/v2/clob/orders/b2c3d4e5-...
{
  "order": {
    "id": "b2c3d4e5-...",
    "marketId": "550e8400-...",
    "ownerPubkey": "7xKXabc123...",
    "side": "buy",
    "outcome": "yes",
    "priceBps": 5500,
    "originalQuantity": "50000000",
    "remainingQuantity": "20000000",
    "committedAmount": "11000000",
    "status": "partially_filled",
    "orderType": "limit",
    "timeInForce": "gtc",
    "createdAt": "2025-01-15T12:00:00.000Z",
    "updatedAt": "2025-01-15T12:05:00.000Z"
  }
}