TuningData API
Vehicle brand, model, year, engine and tuning stage information API
5 endpoints
The in-depth APIMemo review for this API hasn't been published yet —
the data below comes straight from the public marketplace listing.
TuningData API endpoints
| Method | Endpoint | Description |
|---|---|---|
| GET |
getModelsByBrand /api/tdv/brands/{tdv_brand_id}/models |
Get all vehicle models available for a specific brand. Returns model ID, brand ID, and model name for each model. Use the model ID to get years for that model. |
| GET |
getBrands /api/tdv/brands |
Retrieve a comprehensive list of all available vehicle brands in the database. Returns brand ID and name for each brand. Use the brand ID to get models for that brand. |
| GET |
getYearsByModel /api/tdv/models/{tdv_model_id}/years |
Get all production years available for a specific vehicle model. Returns year ID, model ID, and year value for each year. Use the year ID to get engines for that model and year. |
| GET |
getEnginesByModelAndYear /api/tdv/models/{tdv_model_id}/years/{tdv_year_id}/engines |
Get all engines available for a specific vehicle model and production year. Returns engine ID, model ID, year ID, fuel type, and engine details. Use the engine ID to get tuning… |
| GET |
getTuningStagesByEngine /api/tdv/engines/{tdv_engine_id}/tuning-stages |
Get all tuning stages available for a specific engine. Returns stage ID, engine ID, stage name, and performance details. This is the final step in the hierarchical data structure. |