Discover/iFixit API
live

iFixit APIifixit.com

Search and retrieve iFixit repair guides via API. Get step-by-step instructions, required tools, parts lists, difficulty ratings, and device category trees.

Endpoint health
verified 2h ago
search_guides
get_guide
get_category
3/3 passing latest checkself-healing
Endpoints
3
Updated
3h ago

What is the iFixit API?

This API provides access to iFixit's public repair guide library across 3 endpoints, returning structured data including step-by-step instructions, tools, parts, difficulty ratings, and device category hierarchies. The get_guide endpoint exposes complete guide content — every step's ordered lines, media objects, and bullet types distinguishing warnings from notes — while search_guides lets you query the full catalog with pagination and returns per-result metadata like category, subject, and difficulty without requiring a separate fetch.

Try it
Maximum number of results to return per page.
Search query for finding repair guides (e.g. 'iPhone battery replacement', 'MacBook screen').
Number of results to skip for pagination.
api.parse.bot/scraper/b6d5499b-51f4-4212-9cb8-dd3aace3f274/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/b6d5499b-51f4-4212-9cb8-dd3aace3f274/search_guides?limit=5&query=iPhone+battery+replacement&offset=0' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace ifixit-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: iFixit Repair Guides SDK — search, browse, and drill into guides."""
from parse_apis.ifixit_com_api import IFixit, GuideNotFound

client = IFixit()

# Search for battery replacement guides, capped at 3 results
for guide in client.guides.search(query="iPhone battery replacement", limit=3):
    print(guide.title, guide.difficulty, guide.category)

# Take ONE result and drill into its full details
summary = client.guides.search(query="MacBook screen", limit=1).first()
if summary:
    full_guide = summary.details()
    print(full_guide.title, full_guide.time_required)
    for tool in full_guide.tools[:3]:
        print(f"  Tool: {tool.text} (optional={tool.isoptional})")
    for step in full_guide.steps[:2]:
        print(f"  Step {step.orderby}: {step.title}")

# Browse a device category to see all its available guides
category = client.categories.get(category="iPhone 12")
print(category.display_title, f"({len(category.guides)} guides)")
for g in category.guides[:3]:
    print(f"  {g.title} — {g.difficulty}")

# Typed error handling: catch a not-found guide
try:
    client.guides.get(guide_id="9999999")
except GuideNotFound as exc:
    print(f"Guide not found: {exc}")

print("exercised: guides.search / summary.details / guides.get / categories.get")
All endpoints · 3 totalmissing one? ·

Full-text search across iFixit's public repair guide library. Returns guide summaries matching the query. Results are auto-iterated; each item carries enough metadata (difficulty, category, subject) to decide whether to fetch the full guide.

Input
ParamTypeDescription
limitintegerMaximum number of results to return per page.
queryrequiredstringSearch query for finding repair guides (e.g. 'iPhone battery replacement', 'MacBook screen').
offsetintegerNumber of results to skip for pagination.
Response
{
  "type": "object",
  "fields": {
    "limit": "integer",
    "query": "string",
    "offset": "integer",
    "results": "array of guide summaries with guideid, title, url, category, subject, type, difficulty, summary, image",
    "more_results": "boolean",
    "total_results": "integer"
  },
  "sample": {
    "data": {
      "limit": 5,
      "query": "iPhone battery replacement",
      "offset": 0,
      "results": [
        {
          "url": "https://www.ifixit.com/Guide/iPhone+12+Battery+Replacement/140588",
          "type": "replacement",
          "image": {
            "id": 2329837,
            "guid": "3P3vYIESwES1TCR5",
            "standard": "https://guide-images.cdn.ifixit.com/igi/3P3vYIESwES1TCR5.standard"
          },
          "title": "iPhone 12 Battery Replacement",
          "guideid": 140588,
          "subject": "Battery",
          "summary": "iPhone batteries are rated to hold 80% of their...",
          "category": "iPhone 12",
          "difficulty": "Moderate"
        }
      ],
      "more_results": false,
      "total_results": 5
    },
    "status": "success"
  }
}

About the iFixit API

Searching and Browsing Guides

The search_guides endpoint accepts a query string (e.g. 'iPhone battery replacement') and returns an array of guide summaries. Each summary includes guideid, title, url, category, subject, type, difficulty, summary, and a cover image object. Pagination is handled via limit and offset parameters, and the more_results boolean plus total_results integer let you implement full pagination loops without guessing.

Retrieving Full Guide Content

Passing a numeric guide_id to get_guide returns the complete repair guide. The steps array is the core payload: each step carries a stepid, orderby position, title, a lines array where each line has a bullet type (distinguishing regular instructions, warnings, and notes), and a media object. The tools and parts arrays each contain objects with text, url, thumbnail, quantity, and isoptional flags, making it straightforward to distinguish required from optional items. Author metadata (userid, username, reputation) is also returned.

Navigating Device Categories

The get_category endpoint takes a category string — exact device names like 'MacBook Pro 15" Retina Display Mid 2015' — and returns the full context for that node in iFixit's device taxonomy. The response includes a guides array of all repair guides for that device, children (sub-categories), ancestors (the path from root to this node), description, display_title, and solutions_count. This is useful for building device-scoped repair browsers or enumerating all guides for a product line without running repeated searches.

Reliability & maintenanceVerified

The iFixit API is a managed, monitored endpoint for ifixit.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when ifixit.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official ifixit.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
2h ago
Latest check
3/3 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a repair assistant app that surfaces step-by-step instructions and parts lists for a user's specific device model
  • Index iFixit guides by difficulty rating to recommend beginner-friendly repairs first
  • Extract tools and parts data from get_guide to cross-reference against e-commerce inventory
  • Enumerate all guides for a device using get_category to generate a complete repair catalog for that model
  • Track solutions_count per category to identify which device families have the most community repair coverage
  • Use search_guides with pagination to build a local mirror of guide metadata for offline search or analytics
  • Parse step lines bullet types to separate warnings from instructions when rendering guides in a custom UI
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does iFixit have an official developer API?+
Yes. iFixit publishes a public REST API documented at https://www.ifixit.com/api/2.0/doc. This Parse API surfaces a focused subset of that API — guide search, full guide retrieval, and category browsing — with a consistent interface and managed access.
What does `get_guide` return for each repair step?+
Each step object includes a stepid, an orderby integer for sequencing, a title, a media object with images or video for that step, and a lines array. Each line carries a bullet type that distinguishes between standard instructions, warnings (e.g. safety notices), and notes (supplementary tips). Tools and parts are returned as top-level arrays on the guide, not per-step.
Does the API return community answers, comments, or teardown content?+
Not currently. The API covers repair guides (via search_guides and get_guide) and device category metadata (via get_category). Community Q&A threads, teardown articles, and user comments are not exposed. You can fork this API on Parse and revise it to add endpoints for those content types.
How does pagination work in `search_guides`?+
The endpoint accepts limit (max results per page) and offset (number of results to skip). The response includes total_results and a more_results boolean, so you can iterate until more_results is false without needing to calculate total pages manually.
Can I retrieve guides for an entire product line, not just a single device?+
Partially. get_category returns all guides for a specific named category and its children sub-category names, but does not recursively fetch guides for all descendants in one call. To cover a full product line you would need to call get_category once per child. You can fork this API on Parse and revise it to add a recursive category traversal endpoint.
Page content last updated . Spec covers 3 endpoints from ifixit.com.
Related APIs in OtherSee all →
wikia.com API
Extract structured data from Fandom (formerly Wikia) gaming wikis. Search pages, retrieve full page content, list category members, and convert wiki pages into organized guides with infoboxes, section breakdowns, and clean text.
screwfix.com API
Access Screwfix's full product catalog — browse category hierarchies, retrieve paginated product listings with pricing and ratings, fetch detailed product specifications, and search by keyword. Ideal for price monitoring, product research, and catalog analysis.
wikihow.com API
Search and retrieve wikiHow articles with complete instructions, including all steps, ingredients, tips, and categories organized in a structured format. Instantly access random articles or find exactly what you need with powerful search functionality to learn how to do virtually anything.
quickref.me API
Search and retrieve quick reference guides for hundreds of developer tools, languages, and frameworks from quickref.me. Browse all available cheatsheets, search by keyword, or fetch full content for any topic to instantly access the commands, syntax, and usage notes you need.
ibox.co.id API
Search and browse Apple products available at iBox Indonesia with detailed information on variants, pricing, stock availability, and current promotions. Check installment payment options and explore the complete product catalog organized by categories.
devicespecifications.com API
Search and browse mobile device specifications across all brands and models, then access detailed specs for any device you're interested in. Compare features, technical details, and find exactly the phone or tablet information you need.
service-public.fr API
Search the official French public service portal (service-public.fr) for practical guides, legal information, administrative procedures, and support resources. Retrieve structured content from any guide or category page, explore autocomplete suggestions, and access legal references — all through a single unified API.
corsair.com API
Search and filter Corsair's gaming peripherals and PC components catalog by keywords, category, and product attributes like price and specs. Browse detailed product information, compare options, and easily navigate through results with sorting and pagination to find exactly what you need.