Overview

The Manufacturer API offers detailed information about vehicle manufacturers, including production data, model specifications, and historical insights.

This data is valuable for automotive analysts, dealers, and manufacturers to understand market trends, model performance, and production volumes.

CapabilitiesDescription
MakesRetrieves a list of vehicle makes produced by manufacturers.
ModelsAccesses detailed information about vehicle models produced by manufacturers.
ProductionRetrieves production data for specific vehicle models and makes.
SpecificationsFetches detailed specifications for different vehicle models, including engine type and fuel efficiency.
TrimsProvides trim-level details for specific vehicle models, including available features and pricing.
HistoryAccesses historical data for manufacturers, including production volumes and model performance.
IncentivesRetrieves current incentives and offers for specific manufacturers.

Vehicle Makes

Retrieves a list of vehicle makes produced by manufacturers. This data includes make names, production volumes, and model details.

Makes & Models
{
  "makes": [
    {
      "id": "1",
      "name": "Toyota",
      "models": [
        {
          "id": "1",
          "name": "Camry",
          "year": "2022",
          "production": "10000"
        },
        {
          "id": "2",
          "name": "Corolla",
          "year": "2022",
          "production": "15000"
        }
        ...
      ]
    },
    {
      "id": "2",
      "name": "Ford",
      "models": [
        {
          "id": "3",
          "name": "F-150",
          "year": "2022",
          "production": "20000"
        },
        {
          "id": "4",
          "name": "Explorer",
          "year": "2022",
          "production": "12000"
        }
        ...
      ]
    }
    ...
  ]
}

Vehicle Models

Accesses detailed information about vehicle models produced by manufacturers. This data includes model specifications, production volumes, and historical insights.

Models by Make
{
  "make": "Toyota",
  "models": [
    {
      "id": "1",
      "name": "Camry",
      "year": "2022",
      "production": "10000",
      "specifications": {
        "engine": "2.5L I4",
        "transmission": "8-speed automatic",
        "fuelEfficiency": "30 mpg"
      }
    },
    {
      "id": "2",
      "name": "Corolla",
      "year": "2022",
      "production": "15000",
      "specifications": {
        "engine": "1.8L I4",
        "transmission": "CVT",
        "fuelEfficiency": "35 mpg"
      }
    }
    ...
  ]
}

Production Data

Retrieves production data for specific vehicle models and makes. This data includes production volumes, model specifications, and historical trends.

{
  "make": "Toyota",
  "model": "Camry",
  "production": [
    {
      "year": "2020",
      "volume": "90000"
    },
    {
      "year": "2021",
      "volume": "95000"
    }
    ...
  ]
}

Vehicle Specifications

Fetches detailed specifications for different vehicle models, including engine type, transmission, and fuel efficiency. This data is valuable for understanding the features and performance of specific vehicle models.

{
  "make": "Toyota",
  "model": "Camry",
  "specifications": {
    "engine": "2.5L I4",
    "transmission": "8-speed automatic",
    "fuelEfficiency": "30 mpg"
    ...
  }
}

Trim Levels

Provides trim-level details for specific vehicle models, including available features, options, and pricing. This data is valuable for comparing different trim levels and understanding the features offered.

{
  "make": "Toyota",
  "model": "Camry",
  "trims": [
    {
      "name": "LE",
      "price": "25000",
      "features": ["Apple CarPlay", "Android Auto", "Lane Departure Warning"]
    },
    {
      "name": "XLE",
      "price": "28000",
      "features": ["Wireless Charging", "Blind Spot Monitoring", "Adaptive Cruise Control"]
    }
    ...
  ]
}

Historical Data

Accesses historical data for manufacturers, including production volumes and model performance. This data is valuable for tracking trends, analyzing market performance, and understanding historical insights.

{
  "make": "Toyota",
  "history": [
    {
      "year": "2020",
      "production": "100000",
      "sales": "95000"
    },
    {
      "year": "2021",
      "production": "105000",
      "sales": "98000"
    }
    ...
  ]
}

Incentives

Retrieves current incentives and offers for specific manufacturers. This data includes discounts, rebates, and special financing offers available.