In-Game
Blueprints

List Game Blueprints

Returns paginated crafting blueprints, including ingredients, crafted items, and dismantle returns. Results are scoped to the requested or default game version.

get/api/blueprints

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.

sortstring
Example:-craft_time_seconds

Sort field. Prefix with "-" for descending. Supported: craft_time_seconds, ingredient_count, unlocking_missions_count.

filter[query]string
Example:Distiller

Search blueprints by crafted item name

filter[output.uuid]string uuid

Filter by crafted item UUID (see GET /api/items)

filter[output.name]string
Example:P4-AR Magazine (40 cap)

Filter by crafted item name

filter[output.class]string
Example:ksar_smg_energy_01_gold01

Filter by crafted item class

filter[output.type]string
Example:WeaponPersonal

Filter by crafted item type (see GET /api/blueprints/filters for valid values)

filter[default]boolean
Example:true

Filter by default availability (true/false)

filter[ingredient]string

Matches ingredient resource type by name, key, or UUID before filtering blueprints.

filter[ingredient.uuid]string uuid
Example:a11394c9-ad7c-404d-9209-3a5e57bb4aa4

Filter by ingredient commodity UUID. Accepts comma-separated values (see GET /api/commodities)

filter[resource.uuid]string uuid
Example:9b47bacf-8efa-42e2-8d84-dee64983a00a

Filter by resource commodity UUID, matching ingredients and dismantle returns. Accepts comma-separated values (see GET /api/commodities)

Response

List of blueprints

uuidstring uuid

Unique blueprint identifier

keystring

Internal blueprint key (e.g. BP_CRAFT_behr_pistol_ballistic_01)

category_uuidstring uuid

UUID of the blueprint category

output_item_uuidstring uuid

UUID of the item this blueprint crafts

output_namestring nullable

Display name of the crafted item

output_classstring nullable

Internal class identifier of the crafted item

craft_time_secondsinteger nullable

Crafting duration in seconds

craft_time_labelstring nullable

Human-readable crafting duration

is_available_by_defaultboolean

Whether this blueprint is available without unlocking

game_versionstring nullable

Game version code this data applies to

ingredient_countinteger

Total number of distinct ingredients across all requirement groups

unlocking_missions_countinteger

Number of missions that can unlock this blueprint

linkstring uri

API URL for this blueprint

web_urlstring uri

Web URL for the blueprint detail page

output_item_web_urlstring uri nullable

Web URL for the crafted item detail page

Changes