Submit multiple trade orders in a single request. Each order is executed sequentially with the same logic as POST /markets/trade. Maximum 20 orders per batch.
Submit multiple trade orders in a single request. Each order is executed sequentially using the same logic as the single Trade endpoint.Documentation Index
Fetch the complete documentation index at: https://docs.aionmarket.com/llms.txt
Use this file to discover all available pages before exploring further.
| Field | Type | Description |
|---|---|---|
total | integer | Total number of orders submitted |
succeeded | integer | Number of successfully executed orders |
failed | integer | Number of failed orders |
results | array | Array of individual trade results (same schema as Trade response) |
| Code | Meaning |
|---|---|
400 | Invalid request body, empty orders array, or exceeds max |
401 | Missing or invalid API key |
500 | Server-side error |
orders field in each result matches the single trade response schema exactly.Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Array of trade orders to execute in batch (max 20)
1 - 20 elements