Skip to main content
GET
/
v1
/
perps
/
orders
curl "https://api.yield.xyz/v1/perps/orders?address=0x..." \
  -H "x-api-key: your_api_key"

Documentation Index

Fetch the complete documentation index at: https://yieldxyz.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Get Orders

Returns all open orders for a user.
curl "https://api.yield.xyz/v1/perps/orders?address=0x..." \
  -H "x-api-key: your_api_key"

Response

{
  "orders": [
    {
      "id": "order_123",
      "market": "BTC-USD-PERP",
      "provider": "hyperliquid",
      "type": "limit",
      "side": "BUY",
      "size": "0.5",
      "price": "40000",
      "status": "open"
    }
  ]
}