get_market_history
Retrieve price history for specific EVE Online items in a given region to analyze market trends and inform trading decisions.
Instructions
Returns the price history of an item in a particular region
Input Schema
Name | Required | Description | Default |
---|---|---|---|
regionId | Yes | Region ID | |
typeId | Yes | Item type ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"regionId": {
"description": "Region ID",
"type": "number"
},
"typeId": {
"description": "Item type ID",
"type": "number"
}
},
"required": [
"regionId",
"typeId"
],
"type": "object"
}