get-structure-type-orders
Retrieve market orders for a specific item type within a structure using structure ID and type ID. Ideal for accessing real-time market data in EVE Online via ESI API integration.
Instructions
Get all market orders for a specific type 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 | |
| type_id | Yes | Item type ID to get orders for |
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"
},
"type_id": {
"description": "Item type ID to get orders for",
"type": "number"
}
},
"required": [
"structure_id",
"type_id"
],
"type": "object"
}