Complete Car Database REST API with enhanced features, improved performance, and better data structure. Access makes, models, generations, trims, and full vehicle specifications.
Get Started View ExamplesImproved database structure with better indexing and optimized queries for faster response times.
New normalized database schema with separate tables for makes, models, generations, and trims.
Removed language parameter (Russian support) for cleaner and more focused API design.
Built-in file caching system with 1-hour cache lifetime to reduce database load.
Improved API key validation and expiration checking with better error handling.
Support for JSON, XML, CSV, Excel (XLS), and TXT formats from the same endpoint.
https://databases.one/api_v2/
Perfect for web applications with CORS support and UTF-8 encoding.
Structured XML output for enterprise systems and legacy applications.
Comma-separated values for spreadsheets and data analysis tools.
Microsoft Excel XLSX format with automatic download.
Text file with pipe delimiter for easy parsing.
Test the API v2.0 with our demo endpoints (uses test API key):
Retrieve vehicle manufacturers (brands) from our database.
https://databases.one/api_v2/?format=json&select=make&api_key=Your_Database_Api_Key
{
"errors": 0,
"result": [
{
"make_id": "1",
"Make": "Acura"
},
{
"make_id": "2",
"Make": "Alfa Romeo"
},
...
]
}
https://databases.one/api_v2/?format=json&select=make&make_id=1,2,3&api_key=Your_Database_Api_Key
https://databases.one/api_v2/?format=json&select=make&make_id=1&api_key=Your_Database_Api_Key
Retrieve vehicle models filtered by make.
https://databases.one/api_v2/?format=json&select=model&make_id=1&api_key=Your_Database_Api_Key
{
"errors": 0,
"result": [
{
"model_id": "1",
"Model": "CSX"
},
{
"model_id": "2",
"Model": "ILX"
},
...
]
}
https://databases.one/api_v2/?format=json&select=model&model_id=1&api_key=Your_Database_Api_Key
Get detailed vehicle specifications including trims, generations, and complete vehicle data.
https://databases.one/api_v2/?format=json&select=trim&make_id=1&api_key=Your_Database_Api_Key
https://databases.one/api_v2/?format=json&select=generation&make_id=1&api_key=Your_Database_Api_Key
https://databases.one/api_v2/?format=json&select=detail&trim_id=1&api_key=Your_Database_Api_Key
{
"errors": 0,
"result": [
{
"id": "1",
"Make": "Acura",
"Model": "CSX",
"Year": "2005-2011",
"Body_Type": "Sedan",
"Generation": "CSX",
"Trim": "2.0 MT (155 Hp)",
"Engine_Volume": "1998",
"Engine_Power": "155",
"Engine_Type": "Petrol",
"Drive": "FWD",
"Gearbox": "Manual",
"Doors": "4",
"Seats": "5",
"Segment": "Premium",
"Start_Year_Production": "2005",
"End_Year_Production": "2011",
"image": "",
"date_update": "2024-05-23",
"is_active": "1"
}
]
}
Access various vehicle specifications and filter options.
https://databases.one/api_v2/?select=body&api_key=Your_Database_Api_Key
Sedan, SUV, Coupe, Hatchback, Convertible, etc.
https://databases.one/api_v2/?select=drive&api_key=Your_Database_Api_Key
FWD, RWD, AWD, 4WD
https://databases.one/api_v2/?select=gearbox&api_key=Your_Database_Api_Key
Manual, Automatic, CVT, DSG
https://databases.one/api_v2/?select=engine_type&api_key=Your_Database_Api_Key
Petrol, Diesel, Electric, Hybrid
https://databases.one/api_v2/?select=segment&api_key=Your_Database_Api_Key
Premium, Economy, SUV, Sports, Luxury
https://databases.one/api_v2/?select=year&api_key=Your_Database_Api_Key
Filter by production years
https://databases.one/api_v2/?select=date_update&api_key=Your_Database_Api_Key
Check when database was last updated
https://databases.one/api_v2/?select=count_rows&api_key=Your_Database_Api_Key
Total vehicle records in database
https://databases.one/api_v2/?select=count_makes&api_key=Your_Database_Api_Key
Number of manufacturers
https://databases.one/api_v2/?select=count_models&api_key=Your_Database_Api_Key
Number of vehicle models
https://databases.one/api_v2/?select=all&start_date=2024-01-01&api_key=Your_Database_Api_Key
Get all records updated since date
https://databases.one/api_v2/?select=all&start_date=2024-01-01&end_date=2024-06-01&api_key=Your_Database_Api_Key
Get records within date range
| Parameter | Type | Required | Description | Default |
|---|---|---|---|---|
api_key |
String | Yes | Your unique API key | - |
format |
String | No | Output format: json, xml, csv, txt, xls | json |
select |
String | No | Data type: make, model, generation, trim, body, drive, gearbox, engine_type, segment, year, detail, all, date_update, count_* | make |
make_id |
Integer/String | No | Single ID or comma-separated IDs | 0 (all) |
model_id |
Integer | No | Model identifier | 0 |
generation_id |
Integer | No | Generation identifier | 0 |
trim_id |
Integer | No | Trim identifier (required for detail) | 0 |
is_active |
Integer | No | Filter active records: 0=all, 1=active | 0 |
start_date |
Date | No | Filter from date (YYYY-MM-DD) | 0 |
end_date |
Date | No | Filter to date (YYYY-MM-DD) | 0 |
111 | Invalid Api Key |
222 | Expired Api Key |
333 | Invalid Language Variable (deprecated in v2) |
444 | Invalid Select Variable |
555 | No Access |
666 | Missing Variables |
777 | Invalid Date Variable |
888 | Database Query Error |
999 | Configuration Error |
{
"errors": 1,
"error": [
{
"code": "111",
"message": "Invalid Api Key"
}
]
}
/api/ to /api_v2/lang parameterFeatures:
auto_databases_oneFeatures:
cars_databases_oneContact us at support@databases.one for pricing and API key generation.
By using our API, you agree to our Terms of Service and Privacy Policy.