get-market-history
Retrieve historical market data for a specific item in a region using the EVE Online API. Input region and item IDs to access detailed trade insights.
Instructions
Get market history for a specific item in a region
Input Schema
Name | Required | Description | Default |
---|---|---|---|
region_id | Yes | Region ID to get market history from | |
type_id | Yes | Item type ID to get history for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"region_id": {
"description": "Region ID to get market history from",
"type": "number"
},
"type_id": {
"description": "Item type ID to get history for",
"type": "number"
}
},
"required": [
"region_id",
"type_id"
],
"type": "object"
}