ModelPartFinder Error Codes
Look up appliance error codes and the parts that fix them
ModelPartFinder maps appliance and equipment error codes to plain-English explanations and suggested replacement parts. Query by brand and code to get the fault description, the affected appliance type, and recommended part SKUs with prices. Keyless JSON, one lookup per request.
GET https://modelpartfinder.com/api/v1/error-code/Whirlpool/F01
{
"ok": true,
"brand": "Whirlpool",
"code": "F01",
"description": "Main electronic control board failure. Replace the central control board or its connectors.",
"appliance": "Dryer",
"recommended_skus": [
{
"sku": "WP3387747",
"title": "Dryer heating element",
"price_cents": 5948
}
]
}curl "https://modelpartfinder.com/api/v1/error-code/Whirlpool/F01"const res = await fetch("https://modelpartfinder.com/api/v1/error-code/Whirlpool/F01");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://modelpartfinder.com/api/v1/error-code/Whirlpool/F01")
print(res.json())/error-code/Whirlpool/F01PROBEDLook up appliance error codes and the parts that fix them
/error-codeError Code — documented GET route.
/error-code/1Error Code details by ID (example: 1).
/error-code?limit=10Error Code — documented GET route.
/error-code/search?q=testSearch by query parameters.
/api/v1/error-code/Error Code — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
ModelPartFinder Error Codes: common questions
Is ModelPartFinder Error Codes free to use?
Yes — ModelPartFinder Error Codes is a free open data API. Free tier: Free — no key. Whether the free tier allows commercial use is unclear — check the provider docs.
Does ModelPartFinder Error Codes need an API key?
No — ModelPartFinder Error Codes needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call ModelPartFinder Error Codes from the browser?
Yes — ModelPartFinder Error Codes returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is ModelPartFinder Error Codes up right now?
As of our last scheduled check, ModelPartFinder Error Codes is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.