POST /api/ifixit/products/search
Price: 10 credits
Search the iFixit parts and tools store by keywords, device, category, price and stock
Finds parts and tools across iFixit's regional stores, and it is the only place the region is chosen: prices, stock and the catalogue itself change with store_region, so set it before comparing prices. One row is one offer, not one product — a part sold both bare and as a fix kit returns two rows sharing a product_code, and alias is the handle the product endpoint takes. device, category, item_type, device_brand, device_type and capacity match the store's own wording exactly, so put loose phrasing in query. Rows carry no compatibility list or specification table; fetch the product for those.
access-token string requiredtimeout integer — Max scrapping execution timeout (in seconds) (default: 300; min: 20; max: 1500)query string nullable — Words to match in the product name, description and part numbers. Omit to browse by filters alonecount integer required — Max number of results (min: 1; max: 1000)store_region string — Which regional iFixit store to price and stock the results against (default: "en_us"; one of: "en_us", "en_eu", "en_au", "en_ca", "de_de", "fr_fr", "fr_ca")device array — Exact device names the part is sold for (default: []; examples: ["iPhone 13"])category array — Store category names (default: []; examples: ["Batteries"])main_category array — Top-level split of the catalogue (default: []; one of: "Parts", "Tools", "Upgrades", "iFixit Gear")item_type array — What kind of item it is, in the store's own wording (default: []; examples: ["Batteries"])device_brand array — Brand of the device the part is for (default: []; examples: ["Apple"])device_category array — Broad class of the device the part is for (default: []; examples: ["Phone"])device_type array — Model family of the device the part is for (default: []; examples: ["iPhone"])operating_system array — Operating system of the device the part is for (default: []; one of: "Windows", "Android", "iOS", "macOS")part_or_kit array — Whether the offer is the bare part or a kit around it (default: []; one of: "Part Only", "Fix Kit", "Upgrade Kit")capacity array — Storage or battery capacity of the item (default: []; examples: ["512 GB"])tool_category array — Where a tool sits in the tool catalogue (default: []; examples: ["Cleaning"])screwdriver_type array — Build of a screwdriver (default: []; examples: ["Interchangeable Bits"])merchandise_category array — Kind of branded merchandise (default: []; examples: ["Clothing"])ifixit_exclusive_only boolean — Keep only items iFixit sells nowhere else (default: false)price_min number nullable — Lowest price to accept, in the store's currency (min: 0)price_max number nullable — Highest price to accept, in the store's currency (min: 0)min_rating number nullable — Lowest average customer rating to accept, out of five (min: 0; max: 5)min_rating_count integer nullable — Only products rated by at least this many customers (min: 0)in_stock_only boolean — Keep only offers the store can ship now (default: false)lifetime_warranty_only boolean — Keep only offers covered by iFixit's lifetime warranty (default: false)discounted_only boolean — Keep only offers currently marked down (default: false)@type string (default: "IfixitProductOffer")id string requiredname string requiredalias string requiredurl string nullableproduct_code string nullableproduct_id string nullableoffer_key string nullabledisplay_name string nullabledescription string nullableimage string nullablestore_region string nullableprice number nullableprice_min number nullableprice_max number nullableprice_band string nullablecompare_at_price number nullableis_discounted boolean nullableis_pro boolean nullableis_in_stock boolean nullableis_public boolean nullablehas_lifetime_warranty boolean nullablequantity_available integer nullablerating number nullablerating_count integer nullablescore integer nullableoem_partner_code string nullableoem_partner_url string nullabledevices array (default: [])categories array (default: [])option_values array (default: [])works_in array (default: [])identifiers array (default: [])compatible_part_numbers array (default: [])keywords array (default: [])attributes array (default: [])@type string (default: "IfixitProductAttribute")name string requiredvalues array (default: [])attributes_localized array (default: [])@type string (default: "IfixitProductAttribute")name string requiredvalues array (default: [])search_tags array (default: [])@type string (default: "IfixitProductAttribute")name string requiredvalues array (default: [])axes array (default: [])@type string (default: "IfixitOfferAxis")code string requiredvalues array (default: [])@type string (default: "IfixitOfferAxisValue")value string requiredraw_value string nullableprice_from number nullablevariant_count integer nullable422 — The request body did not validate Check the fields against this schema. A URN with the wrong prefix is the most common cause.408 — The request ran past its time limit Raise `timeout` in the request body, up to the maximum this endpoint documents. Lowering `count` or turning off the `with_*` flags also helps, because less work finishes sooner.412 — The entity was not found, or a precondition failed Retrying will not help: either the entity does not exist, or the input points at a different one.429 — Too many requests: a rate limit or a usage window is exhausted When the response carries an X-Retry-After header, wait that many seconds and retry: the same number is in the body as `detail.retry_after`, and the limit clears once that window passes. The message in the body names the limit that was hit.500 — Something broke on our side Retrying will not help. If it keeps happening, send us the X-Request-ID from the response headers.529 — Rate limit reached, or the endpoint is overloaded Wait at least 30 seconds, then retry.X-Error — Error message text (present only on error)X-Request-ID — Unique request identifierX-Execution-Time — Execution time in secondsX-Result-Count — How many records the body carries. 0 means an empty result, which is a normal answer and not by itself an error. A non-zero count can come back together with X-Error when the failure happened partway through — read this header and X-Error independently.X-Total-Available-Results — How many records exist for this query, when the endpoint can say. On a `dry_run` request this is the answer and the body is empty. It saturates: the endpoint's documented maximum means 'at least that many', any smaller number is exact.X-Warning — Present when the request body carried keys this endpoint does not document. They were ignored, so any filter you meant to apply through them did not apply. Check the spelling against this schema and retry.X-Retry-After — Seconds to wait before retrying. Present only on 429.