DistributorOffer
Distributor pricing & stock
A distributor's current offer for a part — stock plus its quantity-break price ladder.
JSON
1{2 "distributor": "Digi-Key",3 "sku": "296-1772-5-ND",4 "stock": 14230,5 "lead_time": "In Stock",6 "offer_url": "https://www.digikey.com/en/products/detail/...",7 "updated_at": "2026-05-30T11:02:00Z",8 "tiers": [9 {10 "quantity": 1,11 "unit_price": 0.68,12 "currency": "USD"13 },14 {15 "quantity": 100,16 "unit_price": 0.42,17 "currency": "USD"18 }19 ]20}| Field | Type | Notes |
|---|---|---|
distributor | string | Distributor display name |
sku | string | null | Distributor part number, if known |
stock | int | Units in stock at the last snapshot |
lead_time | string | null | Lead-time estimate (e.g. "In Stock") |
offer_url | string | null | Distributor product page |
updated_at | string | ISO-8601 timestamp of the snapshot |
tiers | PriceTier[] | Quantity-break ladder, ascending by quantity |
PriceTier
A single quantity-break price point within an offer.
JSON
1{2 "quantity": 100,3 "unit_price": 0.42,4 "currency": "USD"5}| Field | Type | Notes |
|---|---|---|
quantity | int | Minimum order quantity for this tier |
unit_price | number | Per-unit price at that quantity |
currency | string | ISO-4217 currency code |
Appears in: PartDetail.pricing.