Discover/Autodoc API
live

Autodoc APIautodoc.co.uk

Browse Autodoc's vehicle hierarchy and parts catalog via API. Search parts by keyword or number, get specs, OE references, and find compatible alternatives.

Endpoint health
verified 6d ago
search_parts
get_car_makers
get_car_models
get_product_details
get_car_engines
6/6 passing latest checkself-healing
Endpoints
6
Updated
21d ago

What is the Autodoc API?

The Autodoc.co.uk API exposes 6 endpoints covering the full vehicle-to-part lookup chain on one of Europe's largest online auto parts retailers. Starting with get_car_makers, you can drill down through manufacturers, models, and engine variants to identify the correct fitment context, then search for parts by keyword or part number, retrieve detailed specifications and OE reference numbers, and find compatible alternative products from other brands.

Try it

No input parameters required.

api.parse.bot/scraper/70de51f9-9aaa-46f7-89f2-d9e784c78466/<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/70de51f9-9aaa-46f7-89f2-d9e784c78466/get_car_makers' \
  -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 autodoc-co-uk-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: Autodoc API — browse vehicles, search parts, get details."""
from parse_apis.autodoc_api import Autodoc, ProductNotFound

client = Autodoc()

# List all car makers — limit= caps total items fetched
for maker in client.makers.list(limit=5):
    print(maker.name, f"(id={maker.id}, group={maker.group})")

# Drill into a specific maker's models via constructible resource
bmw = client.maker(id=16)
first_model = bmw.models.list(limit=1).first()
if first_model:
    print(f"First BMW model: {first_model.name} (group: {first_model.group})")

    # Get engines for that model
    for engine in first_model.engines.list(limit=3):
        print(f"  Engine: {engine.name} — {engine.group}")

# Search for parts by keyword
result = client.parts.search(query="oil filter", limit=3).first()
if result:
    print(f"Search hit: {result.title} ({result.type}) — {result.url}")

# Get full product details
try:
    product = client.parts.get(url="/ridex/7999410")
    print(f"Product: {product.name}")
    print(f"  Brand: {product.brand}, Price: {product.price}")
    print(f"  Specs: {len(product.specs)} items, OE numbers: {len(product.oe_numbers)}")
except ProductNotFound as exc:
    print(f"Product not found: {exc}")

# Find equivalent/compatible products
for equiv in client.products.equivalents(url="/ridex/7999410", limit=5):
    print(f"  Alternative: {equiv.brand} {equiv.part_number}")

print("exercised: makers.list / models.list / engines.list / parts.search / parts.get / products.equivalents")
All endpoints · 6 totalmissing one? ·

Returns all car manufacturers available on Autodoc, grouped into popular and alphabetical lists. Each maker has an integer ID used to drill into models. No input required.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "makers": "array of maker objects each containing id (integer), name (string), and group (string indicating popularity grouping)"
  },
  "sample": {
    "data": {
      "makers": [
        {
          "id": 16,
          "name": "BMW",
          "group": "Popular carmakers"
        },
        {
          "id": 121,
          "name": "VW",
          "group": "Popular carmakers"
        },
        {
          "id": 5,
          "name": "AUDI",
          "group": "Popular carmakers"
        }
      ]
    },
    "status": "success"
  }
}

About the Autodoc API

Vehicle Hierarchy

Three endpoints map Autodoc's vehicle catalog as a tree. get_car_makers returns every manufacturer available, with each maker carrying an integer id, a name, and a group field that distinguishes popular brands from the full alphabetical list. Pass a maker_id to get_car_models to get that brand's model lineup — each model includes an integer id, a name with production date range, and a group denoting its model series. From there, get_car_engines accepts a model_id and returns engine variants grouped by fuel type (Petrol, Diesel, etc.), each with an integer id and a name encoding power output and date range.

Parts Search and Product Detail

search_parts accepts a free-text query — brand part numbers like RIDEX 402B0013 work as well as generic terms like brake pads. Results come back as an items array where each entry carries a type field (suggestion, category, or product), a title, and a url path. Product hits also include pricing. Those URL paths feed directly into get_product_details, which returns the full product record: name, brand, price, article_number, a specs object mapping specification labels to values, and an oe_numbers array of OEM reference strings.

Alternative Parts

get_equivalent_products accepts the same URL path format as get_product_details and returns an equivalents array. Each entry includes brand, part_number, price, and a url for further lookup. This is useful for comparing cross-brand fitment options or finding in-stock alternatives when a specific part number is unavailable.

Reliability & maintenanceVerified

The Autodoc API is a managed, monitored endpoint for autodoc.co.uk — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when autodoc.co.uk 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 autodoc.co.uk 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
6d ago
Latest check
6/6 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 vehicle-specific parts finder by chaining get_car_makers → get_car_models → get_car_engines to establish fitment context.
  • Look up OE/OEM reference numbers for a part using the oe_numbers field from get_product_details.
  • Compare prices across alternative brands for the same part using get_equivalent_products.
  • Search by competitor part numbers or article numbers via search_parts to find matching Autodoc listings.
  • Populate a product catalog with specs, pricing, and brand data pulled from get_product_details.
  • Identify cross-brand replacement options for discontinued or hard-to-source parts.
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 Autodoc have an official public developer API?+
Autodoc does not publish a public developer API or documented REST endpoints for external use. Access to their catalog data is not available through any official third-party integration program.
What does get_product_details return beyond price and brand?+
It returns a specs object mapping technical specification labels (such as dimensions, material, or fitment notes) to their values, an oe_numbers array of OEM reference strings, and an article_number field. The price field may be null if pricing is unavailable for a given listing.
Does the API return vehicle-specific part compatibility — i.e., whether a part fits a specific engine ID?+
Not currently. The vehicle hierarchy endpoints (get_car_makers, get_car_models, get_car_engines) return IDs and metadata for navigation, but the parts search and product detail endpoints do not filter results by engine ID or confirm fitment for a specific vehicle configuration. You can fork the API on Parse and revise it to add an endpoint that links engine IDs to compatible part listings.
Are customer reviews or ratings included in the product detail response?+
Not currently. get_product_details returns technical specifications, OE numbers, pricing, and brand data, but no review text or rating scores. You can fork the API on Parse and revise it to add a review-fetching endpoint for product URLs.
Does search_parts support pagination for large result sets?+
The search_parts endpoint returns categorized suggestions, categories, and product hits for a query, but does not expose pagination parameters. Results reflect the suggestion and autocomplete layer of the catalog rather than a paginated full-text index. For deeper catalog traversal, combining the vehicle hierarchy endpoints with product lookups is the more reliable path.
Page content last updated . Spec covers 6 endpoints from autodoc.co.uk.
Related APIs in AutomotiveSee all →
autodoc.es API
Browse vehicle makes, models, and variants on Autodoc.es, then search for specific auto parts by keyword or part number. Retrieve category listings with pricing, full part specifications, OE cross-reference numbers, and vehicle fitment data to compare options and verify compatibility.
auto-data.net API
Search and retrieve comprehensive specifications for over 53,500 cars by browsing brands, models, generations, and variants to find detailed performance, engine, dimensions, and drivetrain data. Quickly access the exact automotive information you need without navigating multiple sources.
car-part.com API
Search for recycled auto parts across thousands of vehicles and get detailed information on pricing, availability, and specifications from car-part.com. Find the exact parts you need with comprehensive search metadata and individual part details to compare options and locate the best deals.
bildelsbasen.se API
Find and browse used car parts from Bildelsbasen's inventory by vehicle make, model, registration number, or OEM part number. Get detailed information about available dismantled parts, including pricing and specifications from listed companies.
autotrader.com API
Search Autotrader.com vehicle listings and access detailed information like pricing, specifications, and VIN data with flexible filtering options. Browse all available vehicle makes and models to refine your search across thousands of listings.
napaonline.com API
Search NAPA Auto Parts' catalog to find compatible parts by vehicle type, get detailed product information with reviews, and discover similar products all in one place. Browse by vehicle year, make, and model to quickly locate the right parts and read what other customers think about them.
autobidmaster.com API
Search and browse vehicle auction inventory with detailed lot information, filters by make, type, body style, and damage condition, plus discover featured items and auction locations. Find the perfect vehicle by accessing comprehensive inventory data and exploring popular makes and damage types across AutoBidMaster auctions.
amayama.com API
Search and browse genuine OEM car parts across major brands like Toyota, Nissan, Honda, BMW, and Mercedes-Benz, with instant access to pricing, availability, shipping information, and vehicle compatibility details. Find the exact parts you need by brand, model, and frame, complete with comprehensive part specifications and stock status.