Discover/auto-data API
live

auto-data APIauto-data.net

Access specs for 53,500+ cars via the auto-data.net API. Browse brands, models, generations, and variants to retrieve engine, performance, and dimension data.

Endpoint health
verified 6d ago
get_models
get_specifications
search
get_generations
list_brands
6/6 passing latest checkself-healing
Endpoints
6
Updated
22d ago

What is the auto-data API?

The auto-data.net API provides structured access to technical specifications for over 53,500 automobiles across 376+ brands through 6 endpoints. Starting with list_brands, you can traverse the full hierarchy — brands to models to generations to variants — and retrieve detailed spec sheets covering engine output, dimensions, drivetrain configuration, and performance figures for any specific car variant.

Try it

No input parameters required.

api.parse.bot/scraper/a203509b-10c5-4784-8bd6-00bd8f4608db/<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/a203509b-10c5-4784-8bd6-00bd8f4608db/list_brands' \
  -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 auto-data-net-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.

"""Auto-Data.net: browse car hierarchy and fetch specifications."""
from parse_apis.auto_data.net_car_specifications_api import (
    AutoData, ResultType, BrandNotFound
)

client = AutoData()

# Search for a car by keyword — capped at 5 results.
for result in client.searchresults.search(query="Toyota Corolla", limit=5):
    print(result.name, result.type, result.slug)

# Navigate the hierarchy: list brands, pick one, drill into models.
brand = client.brands.list(limit=1).first()
if brand:
    print(brand.name, brand.slug)
    for model in brand.models.list(limit=3):
        print(model.name, model.years, model.slug)

# Construct a known brand and walk generations → variants → specs.
bmw = client.brand(slug="bmw-brand-86")
model = bmw.models.list(limit=1).first()
if model:
    gen = model.generations.list(limit=1).first()
    if gen:
        print(gen.name, gen.image_url)
        variant = gen.variants.list(limit=1).first()
        if variant:
            spec = variant.specifications()
            print(spec.title, spec.image_url)
            for section, entries in spec.specifications.items():
                print(section, len(entries), "specs")

# Typed error handling: catch a bad brand lookup.
try:
    bad = client.brand(slug="nonexistent-brand-0")
    for m in bad.models.list(limit=1):
        print(m.name)
except BrandNotFound as exc:
    print(f"Brand not found: {exc.brand_slug}")

print("exercised: search / brands.list / models.list / generations.list / variants.list / specifications")
All endpoints · 6 totalmissing one? ·

List all car brands available in the database (376+ brands). Returns brand names, slugs, and URL paths. Each brand slug can be passed to get_models to retrieve that brand's model lineup.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "total": "integer count of brands returned",
    "brands": "array of brand objects with name, slug, url_path"
  },
  "sample": {
    "data": {
      "total": 384,
      "brands": [
        {
          "name": "BMW",
          "slug": "bmw-brand-86",
          "url_path": "/en/bmw-brand-86"
        },
        {
          "name": "Toyota",
          "slug": "toyota-brand-40",
          "url_path": "/en/toyota-brand-40"
        }
      ]
    },
    "status": "success"
  }
}

About the auto-data API

Navigating the Hierarchy

The API is organized as a four-level hierarchy. list_brands returns every brand in the database with its name, slug, and URL path — the slug feeds directly into get_models. get_models accepts a brand_slug (e.g., toyota-brand-40) and returns model names, production year ranges, and per-model slugs. get_generations takes a model_slug and returns each generation with its name, slug, and a thumbnail image URL. get_variants accepts a generation_slug and returns every trim and engine configuration available for that generation, including production year spans.

Specification Detail

get_specifications is where the technical data lives. Pass a variant_slug (e.g., mini-electric-cooper-se-f56-facelift-2021-32.6-kwh-184hp-44617) and the response includes a title, an image_url, a key_specs object mapping FAQ-style questions to concise answers, and a specifications object whose keys are section names (such as performance, engine, dimensions, drivetrain, weight) mapping to name/value pairs. Spec sections vary by vehicle type, so an EV and an ICE car will expose different fields. Note that some spec values are gated behind a logged-in account on the source site and may be absent in the response.

Search and Discovery

search accepts a free-text query (e.g., BMW 3, Toyota Corolla) and returns up to 30 results. Each result includes a name, a type field classifying it as a brand, model, generation, or variant, a slug, a url_path, and an image_url. The type field tells you which downstream endpoint to call with the returned slug — making it straightforward to jump directly to a known car without walking the full hierarchy.

Reliability & maintenanceVerified

The auto-data API is a managed, monitored endpoint for auto-data.net — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when auto-data.net 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 auto-data.net 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 car comparison tool that pulls specifications sections for two variants side by side using their slugs.
  • Populate a vehicle database by iterating list_brandsget_modelsget_generationsget_variants to catalog the full inventory.
  • Auto-fill a configurator form by resolving a user's text query through search and fetching matching variant specs.
  • Generate spec sheets for a dealership CMS by calling get_specifications for each stocked model's variant slug.
  • Feed an automotive research tool with engine displacement, horsepower, and torque values from the specifications response.
  • Display thumbnail images and generation timelines on a model history page using get_generations response fields.
  • Validate user-submitted vehicle data against canonical specs retrieved from get_specifications for a given variant.
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 auto-data.net have an official developer API?+
Auto-data.net does not publish an official developer API or documented public endpoints for programmatic access to its car specifications database.
What does get_specifications actually return, and are all fields always present?+
It returns a title, an image_url (or null), a key_specs object with short answers to common questions about the variant, and a specifications object broken into named sections such as performance, engine, dimensions, and drivetrain. The exact sections and fields vary by vehicle type. Some spec values that require a logged-in session on the source site may be missing from the response.
Does the search endpoint return full specifications directly?+
No — search returns up to 30 matching results with name, type, slug, url_path, and image_url fields. The type field (brand, model, generation, or variant) tells you which endpoint to call next with the slug to retrieve further data. Full specs require a separate call to get_specifications with a variant slug.
Does the API expose historical pricing, owner reviews, or recall data for vehicles?+
Not currently. The API covers technical specifications — engine, performance, dimensions, drivetrain, and weight data — structured across the brand/model/generation/variant hierarchy. Pricing history, owner reviews, and recall information are not part of the response. You can fork this API on Parse and revise it to add endpoints targeting those data sources.
Does the API support filtering variants by fuel type, transmission, or body style directly?+
Not as a query parameter. get_variants returns all variants for a given generation, and filtering by attributes like fuel type or transmission requires inspecting the returned variant names or fetching individual specs. The API covers the full variant list per generation. You can fork it on Parse and revise to add server-side filtering logic over the returned variant data.
Page content last updated . Spec covers 6 endpoints from auto-data.net.
Related APIs in AutomotiveSee all →
allcarindex.com API
Browse and search detailed information on over 14,000 automotive brands and 6,000 concept cars, organized by region, country, and model specifications. Discover vehicle data across the world's largest automotive encyclopedia with instant access to brand details, model information, and comprehensive search capabilities.
autodoc.co.uk API
Find auto parts and check compatibility with your vehicle by browsing makes, models, and engines, then search for parts with detailed specifications and discover equivalent alternatives. Get everything you need to identify the right replacement parts for any car in the Autodoc catalog.
avto.net API
Search and browse car listings from Slovenia's top automotive marketplace, then access detailed vehicle information including pricing, specifications, and seller details. Get comprehensive data on available cars to compare options and make informed purchasing decisions.
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.
tractordata.com API
Search and explore detailed tractor information including specifications, engine and transmission data, dimensions, photos, and attachments across farm and lawn tractor brands and models. Stay updated with the latest tractor news, industry shows, and test results all in one place.
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.
drivearabia.com API
Browse car makes and models, search available vehicles, and access detailed pricing, specifications, and body type information for cars in the Middle East market. Compare vehicles across DriveArabia's inventory to find the perfect car with complete performance and feature details.
chileautos.cl API
Search car listings and get detailed vehicle information from Chile's largest auto marketplace, including brands, specifications, and pricing. Find your next vehicle by browsing available cars with complete details all in one place.