get-market-orders
Retrieve market orders for specific items or regions in EVE Online. Filter by buy, sell, or all orders to access real-time market data through the ESI API.
Instructions
Get market orders from a specific region
Input Schema
Name | Required | Description | Default |
---|---|---|---|
order_type | No | Type of orders to retrieve | all |
region_id | Yes | Region ID to get market orders from | |
type_id | No | Item type ID to filter orders |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"order_type": {
"default": "all",
"description": "Type of orders to retrieve",
"enum": [
"buy",
"sell",
"all"
],
"type": "string"
},
"region_id": {
"description": "Region ID to get market orders from",
"type": "number"
},
"type_id": {
"description": "Item type ID to filter orders",
"type": "number"
}
},
"required": [
"region_id"
],
"type": "object"
}