Skip to content
Alchemy Logo

Frontend open orders

This API is in private preview. Target October 2026; timing is subject to change.

Returns open orders with trigger, reduce-only, and order-type details used by trading interfaces.

Available now. This read is served at the interim endpoint today.

POST /{apiKey}/info

ParameterTypeRequiredDescription
typestringYesSelects frontendOpenOrders.
userstringYesMaster or sub-account address.
dexstringNoPerpetual DEX name; omit for the first perpetual DEX.
{
  "type": "frontendOpenOrders",
  "user": "0x0000000000000000000000000000000000000000",
  "dex": ""
}

FieldTypeDescription
[]arrayOpen-order entries.
[].coinstringMarket identifier.
[].isPositionTpslbooleanWhether the order applies to an entire position.
[].isTriggerbooleanWhether this is a conditional trigger order.
[].limitPxstringLimit price, as a decimal string.
[].oidintegerOrder identifier.
[].orderTypestringOrder instruction, such as limit or trigger order.
[].origSzstringOriginal order size before fills or reductions.
[].reduceOnlybooleanWhether execution may only reduce an existing position.
[].sidestringB for a bid or A for an ask.
[].szstringSize.
[].timestampintegerMillisecond time when the order was created.
[].triggerConditionstringPrice condition that activates the trigger order.
[].triggerPxstringPrice threshold that activates the trigger order.

[
  {
    "coin": "BTC",
    "isPositionTpsl": false,
    "isTrigger": false,
    "limitPx": "29792.0",
    "oid": 91490942,
    "orderType": "Limit",
    "origSz": "5.0",
    "reduceOnly": false,
    "side": "A",
    "sz": "5.0",
    "timestamp": 1681247412573,
    "triggerCondition": "N/A",
    "triggerPx": "0.0"
  }
]
Was this page helpful?