region_systems_list
Retrieve detailed lists of solar systems within specified EVE Online regions, including security status and constellation data, for strategic navigation and analysis.
Instructions
Get a comprehensive list of all solar systems in specified regions with their security status and constellation information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
regionIds | Yes | Array of region IDs to get system lists for (max 10). Use numeric IDs only, not names. Use region_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": {
"regionIds": {
"description": "Array of region IDs to get system lists for (max 10). Use numeric IDs only, not names. Use region_name_to_id tool to convert names to IDs first.",
"items": {
"type": "number"
},
"maxItems": 10,
"minItems": 1,
"type": "array"
}
},
"required": [
"regionIds"
],
"type": "object"
}