GET /api/v1/market/orders/my/current
Retrieve the authenticated user's currently open orders. Only returns orders with status "pending" or "partial".
Authentication​
Required. Bearer token in Authorization header.
Request​
No query parameters required.
Example​
curl https://intotes.com/api/v1/market/orders/my/current \
-H "Authorization: Bearer <token>"
Response​
200 OK​
[
{
"id": 1010,
"user_id": 7,
"market_id": 42,
"type": "buy",
"kind": "limit",
"token_type": "YES",
"price": 5500,
"amount": 3000,
"filled": 0,
"status": "pending",
"use_bonus": false,
"created_at": "2026-04-04T09:00:00Z"
},
{
"id": 1011,
"user_id": 7,
"market_id": 55,
"type": "sell",
"kind": "limit",
"token_type": "NO",
"price": 7000,
"amount": 1500,
"filled": 800,
"status": "partial",
"use_bonus": false,
"created_at": "2026-04-04T09:30:00Z"
}
]
Response Fields​
Returns an array of Order objects with status "pending" or "partial". See Place Order for the full Order schema.
Errors​
| Status | Code | Description |
|---|---|---|
| 401 | UNAUTHORIZED | Missing or invalid bearer token. |