get-structure-orders
Retrieve all market orders within a specific EVE Online structure by providing the structure ID. Ideal for accessing real-time market data and managing in-game trade efficiently.
Instructions
Get all market orders in a structure
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page | No | Which page to query, starts at 1 | |
structure_id | Yes | Structure ID to get market orders from |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"page": {
"description": "Which page to query, starts at 1",
"type": "number"
},
"structure_id": {
"description": "Structure ID to get market orders from",
"type": "number"
}
},
"required": [
"structure_id"
],
"type": "object"
}