Lego
Lego sets, minifigures, and gear. An asset is a product identity ("Millennium Falcon"); a configuration is a specific release ("UCS Millennium Falcon 75192").
External IDs
| Field | Required | Description | Example |
|---|---|---|---|
| LEGO_SET | No | Official Lego set number | "75192" |
Asset details
| Field | Required | Type | Description | Example |
|---|---|---|---|---|
| id | Yes | string | Tradepost asset ID (UUID) | "e5fe8163-7af8-4521-a437-51fd48b28c5c" |
| theme | No | string | Theme / franchise | "Star Wars", "Technic", "City", "Botanical" |
Config details
Configurations distinguish releases within the same product identity.
| Field | Required | Type | Description | Example |
|---|---|---|---|---|
| id | Yes | string | Tradepost asset configuration ID (UUID) | "4c4d074c-a173-4096-a1b7-320e472cbb2d" |
| name | No | string | Full product name | "Millennium Falcon" |
| image_url | No | string | Primary image URL | — |
| set_number | No | string | Official Lego set number | "75192" |
| variety | No | string | SET (boxed sets, polybags), MINIFIGURE, GEAR (keychains, watches, promo) | "SET" |
| product_line | No | string | Product line within the theme | "Ultimate Collector Series" |
| piece_count | No | integer | Total pieces | 7541 |
| minifigure_count | No | integer | Minifigures included | 10 |
| year_released | No | integer | Release year | 2017 |
| retired | No | boolean | Retired / discontinued | false |
Item details
| Field | Required | Type | Description | Example |
|---|---|---|---|---|
| key_id | No | string | Tradepost key ID (UUID) | "38c9bbe2-…" |
| key_ids | No | string[] | All key IDs for this item | ["38c9bbe2-…"] |
| fair_values | No | array | Fair value entries — see Key Fair Values | [] |
| condition | Yes | string | MINT (factory sealed), NEAR_MINT (opened), DAMAGED | "MINT" |
| quantity | Yes | integer | Number of units | 1 |
Example
{
"asset_type": "LEGO",
"external_ids": { "LEGO_SET": "75192" },
"asset_details": {
"id": "e5fe8163-7af8-4521-a437-51fd48b28c5c",
"theme": "Star Wars"
},
"config_details": {
"id": "4c4d074c-a173-4096-a1b7-320e472cbb2d",
"name": "Millennium Falcon",
"image_url": "https://cdn.tradepost.co/media/asset-configurations/4c4d074c-a173-4096-a1b7-320e472cbb2d/image/1000x1000.webp",
"set_number": "75192",
"variety": "SET",
"product_line": "Ultimate Collector Series",
"piece_count": 7541,
"minifigure_count": 10,
"year_released": 2017,
"retired": false
},
"item_details": {
"key_id": "38c9bbe2-1c33-473d-9a69-9568e1c561dc",
"key_ids": [
"38c9bbe2-1c33-473d-9a69-9568e1c561dc",
"4c4d074c-a173-4096-a1b7-320e472cbb2d"
],
"fair_values": [],
"condition": "MINT",
"quantity": 1
}
}