In-Game
Missions

List Game Missions

Returns paginated missions for the requested or default game version, excluding unreleased and work-in-progress by default. Results are grouped by title when no filters or sorts are active. Includes mission, game version, faction, and blueprint relationships.

get/api/missions

Query parameters

pageinteger

Page number for pagination (starts at 1).

page[number]integer

Page number for pagination (starts at 1).

page[size]integer

Number of results to return per page.

versionstring

Game version to get data from, if omitted uses default version.

includestring

Comma-separated list of relationships to include (e.g. manufacturer,translations).

sortstring
Example:title

Sort field. Prefix with "-" for descending. Supported: title, mission_giver, rank_index, reward_min, reward_max, time_to_complete_minutes, max_players_per_instance, reputation_amount.

filter[mission_giver]string
Example:Citizens for Prosperity

Exact match on the mission giver NPC name. (see GET /api/missions/filters for valid values)

filter[faction]string
Example:ArcCorp

Filter by faction name. Accepts comma-separated values. (see GET /api/missions/filters for valid values)

filter[star_system]string

Filter by star system name. (see GET /api/missions/filters for valid values)

filter[illegal]boolean

Filter for missions marked as illegal

filter[shareable]boolean

Filter for shareable missions

filter[once_only]boolean

Filter for one-time-only missions

filter[available_in_prison]boolean

Filter for missions available while in prison

filter[has_combat]boolean

Filter for missions involving combat encounters

filter[has_defend_objective]boolean

Filter for missions with a defend objective

filter[rank_index]integer

Filter by mission difficulty rank

filter[has_prerequisites]boolean

Filter for missions that have prerequisite requirements

filter[min_enemies]integer

Minimum enemy count threshold

filter[max_enemies]integer

Maximum enemy count threshold

filter[reward_min]integer

Minimum reward in aUEC

filter[reward_max]integer

Maximum reward in aUEC

filter[title]string

Partial match on mission title

filter[description]string

Partial match on mission description

filter[query]string

Search across title, description, and debug name

filter[include_unreleased]boolean

Include unreleased and work-in-progress missions

filter[reward_scope]string
Example:Bounty Hunter

Mission category scope. (see GET /api/missions/filters for valid values)

filter[has_blueprints]boolean

Filter for missions that reward blueprints

filter[reputation_scope]string
Example:FactionReputation

Reputation reward scope from ReputationGained data. (see GET /api/missions/filters for valid values)

filter[blueprint_name]string
Example:S-38 Pistol

Filter by crafted item name from mission blueprint rewards. (see GET /api/missions/filters for valid values)

filter[location]string

Filter by starmap location UUID

Response

List of missions

uuidstring uuid
titlestring nullable
descriptionstring nullable
mission_giverstring nullable
debug_namestring nullable
rank_indexinteger nullable
illegalboolean
legality_labelstring
shareableboolean
once_onlyboolean
has_combatboolean nullable
has_defend_objectiveboolean nullable
enemy_count_mininteger nullable
enemy_count_maxinteger nullable
reward_mininteger nullable
reward_maxinteger nullable
reward_currencystring nullable
time_to_complete_minutesnumber float nullable
star_systemsstring[] nullable
variant_countinteger nullable
has_blueprintsboolean
blueprint_drop_chancenumber float nullable
has_prerequisitesboolean
has_haulingboolean
min_standing_namestring nullable
max_standing_namestring nullable
costinteger nullable
min_crime_statinteger nullable
max_crime_statinteger nullable
available_in_prisonboolean
max_players_per_instanceinteger nullable
max_instances_per_playerinteger nullable
cooldown_secondsinteger nullable
cooldown_labelstring nullable
reaccept_after_abandoningboolean
reaccept_after_failingboolean
fail_if_became_criminalboolean
reward_scopestring nullable
reputation_amountinteger nullable
game_versionstring nullable
linkstring uri
web_urlstring uri

Changes