JSON

Automobile Types - JSON

Automobiles are classified from various perspectives including body style, powertrain, drivetrain, and purpose. Body types include sedans, SUVs, minivans, coupes, and hatchbacks, while powertrains encompass gasoline, diesel, hybrid, and electric vehicles. Additionally, commercial vehicles such as trucks and buses support modern mobility with diverse automobile types.

automobile car type body style passenger car commercial vehicle mobility
[
  {
    "code": "01",
    "slug": "sedan",
    "name": "Sedan",
    "description": "A standard passenger car with a three-box structure.",
    "category": "Body Type"
  },
  {
    "code": "02",
    "slug": "suv",
    "name": "SUV",
    "description": "Sport Utility Vehicle with high off-road capability and spacious interior.",
    "category": "Body Type"
  },
  {
    "code": "03",
    "slug": "minivan",
    "name": "Minivan",
    "description": "A family-oriented vehicle with three-row seating for multiple passengers.",
    "category": "Body Type"
  },
  {
    "code": "04",
    "slug": "coupe",
    "name": "Coupe",
    "description": "A two-door vehicle with sporty design characteristics.",
    "category": "Body Type"
  },
  {
    "code": "05",
    "slug": "truck",
    "name": "Truck",
    "description": "A commercial vehicle designed for cargo transportation.",
    "category": "Commercial Vehicle"
  },
  {
    "code": "06",
    "slug": "bus",
    "name": "Bus",
    "description": "A large passenger vehicle designed for transporting many people.",
    "category": "Commercial Vehicle"
  },
  {
    "code": "07",
    "slug": "electric-vehicle",
    "name": "Electric Vehicle",
    "description": "An environmentally friendly vehicle powered solely by batteries and electric motors.",
    "category": "Powertrain"
  },
  {
    "code": "08",
    "slug": "hybrid-vehicle",
    "name": "Hybrid Vehicle",
    "description": "A vehicle combining a gasoline engine with an electric motor.",
    "category": "Powertrain"
  },
  {
    "code": "09",
    "slug": "hatchback",
    "name": "Hatchback",
    "description": "A compact vehicle with an upward-swinging rear door.",
    "category": "Body Type"
  },
  {
    "code": "10",
    "slug": "station-wagon",
    "name": "Station Wagon",
    "description": "A vehicle based on a sedan with expanded cargo space.",
    "category": "Body Type"
  },
  {
    "code": "11",
    "slug": "convertible",
    "name": "Convertible",
    "description": "A vehicle with a retractable roof.",
    "category": "Body Type"
  },
  {
    "code": "12",
    "slug": "kei-car",
    "name": "Kei Car",
    "description": "A compact vehicle based on Japan's unique regulations.",
    "category": "Body Type"
  }
]