get-market-stats
Retrieve real-time market statistics for a specified region in EVE Online using region ID. Access data via ESI API for accurate market insights and analysis.
Instructions
Get market statistics for a region
Input Schema
Name | Required | Description | Default |
---|---|---|---|
region_id | Yes | Region ID to get statistics from |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"region_id": {
"description": "Region ID to get statistics from",
"type": "number"
}
},
"required": [
"region_id"
],
"type": "object"
}