Skip to content

Latest commit

 

History

5 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 

Repository files navigation

Car-Data-Complete

This is the most complete car database ever and it is updated yearly. So I ran into a problem as a full stack web developer, when a client asked me to build him a Car Data User Form. The form should have three (3) dropdown fields named Vehicle Year, Make, and Model. And we all know that you cannot get stuff like this for free online. So, unless you wanna spend decades making your very own comma separated value (.csv) file to create this sort of thing; I have done it for you.

And unless you really wanna enrich the fucking business community out there who wanna make some quick cash over their database, I strongly suggest you use mine.

Screw the following: CarQuery, The Vehicle Data API! Fuck Teoalida, the most updated car database. Forget APIs they suck and I don't even need to write one single line of code to implement this.

So being the street smart aleck that I am, I never wanted to pay for something unless I really really fucking have to. It's either I crack and hack my way with fucking commercial licenses and shits like these.

Consider it feeding you motherfuckers out there with a baby spoon.

In my WordPress project, I used Formidable Forms Pro, by the way, I didn't pay for this premium plugin one too. Cracked the shit out of this fucking plugin baby! I, then, built two forms Car Make Data Form and Car Make User Form. You can read all about it here: https://formidableforms.com/how-to-create-conditional-drop-down-lists-in-wordpress-forms/. Thus blog even mentioned and shared the fucking GitHub repo of n8bar https://github.com/n8barr and his automotive-model-year-data What a joke, SQL my ass! Like I said, I don't have to do crazy shit like SQL.

In short, follow that blog and then import my CSV file, which I dub as auto.csv It contains car stuff (Year, Make, and Model only) from 1924 to 2024.

Good luck to all of you out there — 3p3US

Car Data Complete

Car Data Complete is a comprehensive, structured automotive dataset containing detailed vehicle information, including makes, models, years, and trim specifications. This repository is designed for developers, data scientists, and automotive enthusiasts who need a reliable, ready-to-use database for building vehicle lookup tools, dealership websites, or automotive applications.


🚗 Key Features

  • Extensive Coverage: Includes thousands of records spanning a wide range of global automotive manufacturers and vehicle generations.
  • Structured Format: Data is cleanly formatted (e.g., JSON/CSV) to ensure seamless parsing and integration into SQL or NoSQL databases.
  • Plug-and-Play Integration: Ready to be consumed by front-end applications, API endpoints, or data visualization tools without requiring heavy pre-processing.
  • Lightweight: Stripped of unnecessary bloat to keep file sizes manageable while retaining critical vehicle specifications.

🚀 How to Use

Depending on your tech stack, you can easily integrate this data into your project:

For JavaScript/Node.js Projects:

If you are using the JSON format, you can import and filter the data directly:

const carData = require('./cars.json');

// Example: Filter cars by Make and Year
const hondaCivics = carData.filter(car => car.make === 'Honda' && car.model === 'Civic' && car.year === 2020);
console.log(hondaCivics);

### For Database Seeding (SQL/MySQL):
If using the provided CSV or SQL dumps, you can quickly seed your relational database:
LOAD DATA INFILE 'cars.csv' 
INTO TABLE vehicles 
FIELDS TERMINATED BY ',' 
ENCLOSED BY '"'
LINES TERMINATED BY '\n'
IGNORE 1 ROWS;

🛠️ Use Cases

  • Dealership Inventories: Populate dropdowns for "Year, Make, Model" search filters.
  • Insurance & Quoting Tools: Cross-reference user inputs with valid vehicle configurations.
  • Machine Learning: Serve as a foundational dataset for training automotive classification models.

👨‍💻 Author & Credits

📄 License

This project is licensed under the MIT License. You are free to use, modify, and distribute this dataset in your personal or commercial projects.

About

This is the most complete car data ever updated yearly.

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors