Skip to main content
POST
/
v1
/
info
/
orderStatus
Get Order Status
curl --request POST \
  --url https://api.hypereth.io/v1/info/orderStatus \
  --header 'Content-Type: application/json' \
  --data '{
  "type": "orderStatus",
  "user": "0x31ca8395cf837de08b24da3f660e77761dfb974b",
  "oid": 127244980388
}'
{
  "status": "order",
  "order": {
    "order": {
      "coin": "BTC",
      "side": "A",
      "limitPx": "43250.0",
      "sz": "0.5",
      "oid": 127244980388,
      "timestamp": 1681923833000,
      "origSz": "1.0",
      "cloid": "my_order_001"
    },
    "status": "open",
    "statusTimestamp": 123
  }
}

Body

application/json
type
enum<string>
required

Request type identifier

Available options:
orderStatus
user
string
required

User's Ethereum address

oid
required

Order ID (numeric) or client order ID (string)

Example:

127244980388

Response

Order status information

status
string

Response type

Example:

"order"

order
object