Auto.dev

Auto.dev provides automotive data APIs for developers and AI agents, including global VIN decoding, used-car vehicle listings with real-time market pricing and dealer data, vehicle specifications, photos, and NHTSA safety recalls. The REST API is served from https://api.auto.dev with API key authentication.

5 APIs 0 Features
AutomotiveVehicle DataVIN DecodingVehicle ListingsRecalls

APIs

Auto.dev VIN Decoding API

Decodes any valid 17-character VIN into make, model, year, trim, engine, body, drivetrain, and transmission. Also exposes a specifications endpoint returning detailed build feat...

Auto.dev Listings / Search API

Searches used-car inventory from US physical and online dealers, filterable by make, model, year, price, location, and CPO status, with cursor and page-based pagination, plus si...

Auto.dev Market Value / Pricing API

Surfaces real-time retail pricing on listings and base MSRP / invoice pricing on the specifications endpoint, alongside a vehicle photos endpoint returning image galleries for i...

Auto.dev Dealers API

Returns dealer information embedded in vehicle listings, including dealer name, location, and contact data resolved by zip-code and distance filters for proximity-based inventor...

Auto.dev Recalls API

Returns NHTSA safety recall data by VIN. The open-recalls endpoint filters to only active and unresolved recalls requiring attention, with campaign numbers, components, conseque...

Collections

Pricing Plans

Auto Dev Plans Pricing

3 plans

PLANS

Rate Limits

Auto Dev Rate Limits

5 limits

RATE LIMITS

FinOps

Resources

👥
GitHubOrganization
GitHubOrganization
🔗
LinkedIn
LinkedIn
🔗
Website
Website
🔗
Documentation
Documentation
🔗
Plans
Plans
🔗
RateLimits
RateLimits
🔗
FinOps
FinOps

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: Auto.dev API
  version: '2.0'
request:
  auth:
    type: bearer
    token: '{{bearerToken}}'
items:
- info:
    name: VIN Decoding
    type: folder
  items:
  - info:
      name: Decode a VIN
      type: http
    http:
      method: GET
      url: https://api.auto.dev/vin/:vin
      params:
      - name: vin
        value: 3GCUDHEL3NG668790
        type: path
        description: A valid 17-character VIN.
    docs: Returns comprehensive vehicle information for any valid 17-character VIN.
  - info:
      name: Get vehicle specifications
      type: http
    http:
      method: GET
      url: https://api.auto.dev/specs/:vin
      params:
      - name: vin
        value: 3GCUDHEL3NG668790
        type: path
        description: A valid 17-character VIN.
    docs: Returns detailed build specifications and base MSRP / invoice pricing for a vehicle by VIN.
- info:
    name: Listings
    type: folder
  items:
  - info:
      name: Search vehicle listings
      type: http
    http:
      method: GET
      url: https://api.auto.dev/listings
      params:
      - name: vehicle.make
        value: Toyota
        type: query
        description: Manufacturer name.
      - name: vehicle.model
        value: Camry
        type: query
        description: Model name.
      - name: vehicle.year
        value: 2018-2024
        type: query
        description: Model year, supports ranges.
      - name: retailListing.price
        value: 10000-30000
        type: query
        description: Retail price, supports ranges.
      - name: zip
        value: '94016'
        type: query
        description: Postal code to center a proximity search.
      - name: distance
        value: '50'
        type: query
        description: Search radius in miles.
      - name: page
        value: '1'
        type: query
      - name: limit
        value: '20'
        type: query
    docs: Searches used-car inventory from US physical and online dealers.
  - info:
      name: Get a single listing by VIN
      type: http
    http:
      method: GET
      url: https://api.auto.dev/listings/:vin
      params:
      - name: vin
        value: 3GCUDHEL3NG668790
        type: path
        description: A valid 17-character VIN.
    docs: Returns a single vehicle listing by VIN.
- info:
    name: Recalls
    type: folder
  items:
  - info:
      name: Get open recalls for a VIN
      type: http
    http:
      method: GET
      url: https://api.auto.dev/openrecalls/:vin
      params:
      - name: vin
        value: 3GCUDHEL3NG668790
        type: path
        description: A valid 17-character VIN.
    docs: Returns active and unresolved NHTSA safety recalls for a vehicle by VIN.
bundled: true