/set/{number}Set metadata, new + used value, and live retailer pricing
Returns set metadata (theme, pieces, MSRP, release/retire dates), our computed market value in USD for both conditions — current_value_usd is the new/sealed value and used_value_usd is the used value — and live retailer pricing from our internal price-status table.
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| number | path | string | yes | LEGO set number (e.g. 75192) |
curl https://api.brickpicker.com/api/v1/set/75192 \
-H "Authorization: Bearer bp_live_..."{
"data": {
"set_number": "75192",
"title": "Millennium Falcon",
"theme": "Star Wars",
"pieces": 7541,
"minifigs_count": 8,
"minifigs": ["sw0532", "sw0661", "sw0676", "sw0700"],
"barcodes": { "upc": "673419267656", "ean": "0673419267656" },
"msrp_usd": 849.99,
"release_date": "2017-10-01",
"retire_date": null,
"image_url": "https://images.brickpicker.com/images/sets/75192.jpg",
"new_value_usd": 1199.50,
"used_value_usd": 949.00,
"value_range": { "low": 1050, "high": 1399, "calculated_at": "..." },
"retailers": [
{ "retailer": "lego", "current_price": 849.99, "in_stock": false, ... },
{ "retailer": "amazon", "current_price": 1199.99, "in_stock": true, ... }
]
},
"meta": {
"request_id": "1a2b3c4d-...",
"rate_limit": { "limit": 1000, "remaining": 999, "reset": "2026-05-15T00:00:00Z" }
}
}