Look up a single offer by its ID. To look up many offers in one round trip, use POST /offers/bulk instead.
See OfferResponse for the full concept and shape of an offer.
curl -i -X GET \
'https://api.luminovo.com/offers/{id}' \
-H 'Accept: application/api.luminovo.offer-v1+json' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Successfully retrieved offer.
An offer for a catalog part. availability (stock + factory lead time) is reported at the offer level. Price-break tiers carry only quantity and unit price. linked_part.type is OffTheShelf or InternalPartNumber.
The offer's unique identifier in the opaque colon-separated form <kind>:<uuid> (e.g. PublicOffTheShelf:550e8400-...). Treat this value as an opaque string — its internal structure may change.
{ "type": "OffTheShelf", "id": "OffTheShelf:a1b2c3d4-5678-90ab-cdef-123456789012", "mpn": "RC0402FR-0710KL", "manufacturer": { "id": "c3d4e5f6-7890-12ab-cdef-345678901234", "name": "Yageo" } }
A catalog (off-the-shelf) part identified by manufacturer + MPN.
{ "type": "Supplier", "id": "f1a2b3c4-0000-1111-2222-333344445555", "name": "Mouser Electronics", "number": "SUP-001", "stock_location": { "id": 150, "name": "Europe" } }
An external supplier branch (e.g. Mouser Europe, Arrow Asia, Digi-Key, or a direct manufacturer).
{ "type": "Number", "unit": "Pieces", "value": "1" }
A weight, with unit taken from WeightUnit (e.g. Kilograms, Grams, Milligrams, Pounds).
The supplier's own part number for this item (sometimes called "SPN" or "vendor part number"). May differ from the manufacturer part number. null if the supplier didn't provide one.
The supplier's quote or offer reference number — typically from their RFQ / quotation system (e.g. "QUO-2026-1234"). Useful when reconciling against the supplier's own records. null if the offer has no associated quote reference (e.g. a list-price entry).
The type of pricing this offer represents — e.g. list price (open catalog price), contract price (negotiated long-term agreement), quote price (one-off RFQ response), or customer-negotiated price. Always present for standard-part offers.
Quantity-based pricing tiers, each carrying quantity + unit price. Quantities and prices are in offer units. The order of tiers is not guaranteed — clients should sort by minimum_order_quantity if order matters.
[ { "minimum_order_quantity": 1, "minimum_packaging_quantity": 1, "unit_price": { … } }, { "minimum_order_quantity": 1000, "minimum_packaging_quantity": 100, "unit_price": { … } } ]
Non-recurring costs associated with this offer (e.g. tooling, NRE, setup fees). Empty array if none.
[]
Packaging the part ships in (e.g. Reel, Tape, Tray, Tube, AmmoPack, Bag, Bulk). null means the supplier did not specify packaging.
{ "factory_lead_time": { "unit": "Weeks", "value": 12 }, "factory_quantity": 100000, "stock": { "type": "Number", "unit": "Pieces", "value": "5000" } }
Stock on hand and factory lead-time at the offer level. null if the supplier did not report any availability information.
Start of the offer's validity window. null means the offer has no explicit start date and is considered valid from creation. Date only, no timezone.
End of the offer's validity window — after this date the offer should no longer be honoured. null means the offer has no explicit expiry. Date only, no timezone.
Terms governing cancellation and returns once an order has been placed against this offer: the time window during which the order can still be cancelled, plus an optional non-cancellable / non-returnable (NCNR) flag. null if the supplier did not specify these terms.
Free-text notes about the offer (e.g. "Lead-free variant", "EOL announced — last-time-buy only").
When this offer was first created in Luminovo (ISO 8601 with timezone).
- StandardPart
- CustomPart
{ "kind": "StandardPart", "id": "PublicOffTheShelf:550e8400-e29b-41d4-a716-446655440000", "linked_part": { "type": "OffTheShelf", "id": "OffTheShelf:a1b2c3d4-5678-90ab-cdef-123456789012", "mpn": "RC0402FR-0710KL", "manufacturer": { … } }, "linked_location": { "type": "Supplier", "id": "f1a2b3c4-0000-1111-2222-333344445555", "name": "Mouser Electronics", "number": "SUP-001", "stock_location": { … } }, "unit_of_measurement": { "type": "Number", "unit": "Pieces", "value": "1" }, "supplier_part_number": "603-RC0402FR-0710KL", "offer_number": "QUO-2026-1234", "price_type": "ListPrice", "price_breaks": [ { … }, { … } ], "one_time_costs": [], "packaging": "Reel", "availability": { "factory_lead_time": { … }, "factory_quantity": 100000, "stock": { … } }, "valid_from": "2026-01-15", "valid_until": "2026-06-15", "cancellation_policy": null, "notes": "Lead-free variant", "creation_date": "2026-01-15T10:30:00Z" }