Search
Unified Search Across All Game Data
Search across items, vehicles, starmap locations, commodities, blueprints, and missions simultaneously. Returns results grouped by type, limited to 5 results per group.
get/api/search
Query parameters
filter[query]string required
Example:Carrack
Search query (minimum 2 characters). Searches names, class names, and other identifiers.
versionstring
Game version code to scope results to. Omit to use the current default version. Use GET /api/game-versions to list available versions and GET /api/game-versions/default to discover the default.
Response
Grouped search results
Example response
{
"data": [
{
"type": "items",
"label": "Items",
"results": [
{
"name": "Arrow",
"class_name": "AEGS_Arrow",
"classification": "fighter",
"classification_label": "Fighter",
"item_type_label": "Weapon",
"extra_label": "Fighter",
"web_url": "https://example.com/vehicles/arrow",
"api_url": "https://example.com/api/vehicles/arrow"
}
]
}
]
}