curl --request POST \
--url https://api.allium.so/api/v1/developer/trading/hyperliquid/info/order/status \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--data '{
"type": "orderStatus",
"user": "0x1234567890abcdef1234567890abcdef12345678",
"oid": 12345
}'
{
"order": {
"coin": "<string>",
"side": "<string>",
"limitPx": "<string>",
"sz": "<string>",
"oid": 123,
"timestamp": 123,
"triggerCondition": "<string>",
"isTrigger": true,
"triggerPx": "<string>",
"children": "<any>",
"isPositionTpsl": true,
"reduceOnly": true,
"orderType": "<string>",
"origSz": "<string>",
"tif": "<string>",
"cloid": "<string>"
},
"status": "<string>",
"statusTimestamp": 123
}
Endpoint providing fills by user address
curl --request POST \
--url https://api.allium.so/api/v1/developer/trading/hyperliquid/info/order/status \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--data '{
"type": "orderStatus",
"user": "0x1234567890abcdef1234567890abcdef12345678",
"oid": 12345
}'
{
"order": {
"coin": "<string>",
"side": "<string>",
"limitPx": "<string>",
"sz": "<string>",
"oid": 123,
"timestamp": 123,
"triggerCondition": "<string>",
"isTrigger": true,
"triggerPx": "<string>",
"children": "<any>",
"isPositionTpsl": true,
"reduceOnly": true,
"orderType": "<string>",
"origSz": "<string>",
"tif": "<string>",
"cloid": "<string>"
},
"status": "<string>",
"statusTimestamp": 123
}
Order status retrieved successfully
The response is of type object
.
Was this page helpful?