get_system_combat_stats
Retrieve raw combat statistics for a specific EVE Online solar system using its numeric ID, including recent killmails and ship/pod kills. Provides unprocessed data for analysis and decision-making.
Instructions
Get raw combat statistics for a solar system by system ID including ESI pod/ship kills (1-hour and 12-hour) and recent killmails from EVE-KILL. Returns unprocessed data without analysis. Requires numeric system ID (use solar_system_name_to_id tool to convert system names to IDs).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
system_id | Yes | The solar system ID to get combat statistics for. Use numeric ID only, not name. Use solar_system_name_to_id tool to convert names to IDs first. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"system_id": {
"description": "The solar system ID to get combat statistics for. Use numeric ID only, not name. Use solar_system_name_to_id tool to convert names to IDs first.",
"exclusiveMinimum": 0,
"type": "integer"
}
},
"required": [
"system_id"
],
"type": "object"
}