22,000+ vehicle engines
Access a large vehicle and engine data foundation through one integration layer.
Remapdb API
Use the Remapdb vehicle tuning database API to bring vehicle lookup, engine data, tuning gains, and configurator logic into your own website, platform, dashboard, dealer portal, or file-service workflow.
22,000+ vehicle engines. REST-style API access. JSON-ready tuning data. Built for custom integrations.
Access a large vehicle and engine data foundation through one integration layer.
Build custom make, model, engine, and variant selection flows.
Use structured performance data in your own UI, dashboards, or workflows.
Work with predictable API responses designed for modern web products.
Build your own configurator instead of relying only on the Remapdb Widget.
Use the API for websites, portals, dashboards, file services, dealer systems, and internal tools.
API possibilities
This vehicle tuning API is for teams that want full control over interface, flow, and customer journey while using Remapdb as the tuning data layer.
Build your own vehicle search and selection experience using Remapdb data.
Example: make -> model -> generation -> engine -> tuning result
GET https://api.remapdb.com/v1/search?query=audi
GET https://api.remapdb.com/v1/engines/{engine_id}Show stock and tuned performance values inside your own website, dashboard, or portal.
Example: original HP/Nm vs tuned HP/Nm for available stages
GET https://api.remapdb.com/v1/engines/{engine_id}Connect selected vehicle data to quote, file request, or customer inquiry flows.
Example: vehicle selected -> tuning shown -> file request started
POST /your-service/file-requests
{
"engine_id": 1234,
"stage_number": 1
}Use vehicle and request context inside dealer portals, routing flows, or location-based systems.
Example: selected vehicle + selected dealer + quote request context
GET https://api.remapdb.com/v1/search?query=bmw
POST /your-service/dealer-routingAdd vehicle-aware performance data to product pages, catalog journeys, or compatibility flows.
Example: product page shows supported vehicle data and gains
GET https://api.remapdb.com/v1/engines/{engine_id}Build internal lookup tools for sales, support, quoting, or data review.
Example: support team searches a vehicle and checks available tuning values
GET https://api.remapdb.com/v1/search?query=2.0 tdiAPI workflow
The API lets your system request vehicle and tuning data, then render that information inside your own configurator, dashboard, portal, product page, or internal tool.
Your app requests makes, models, generations, engines, or specific vehicle records.
The API returns vehicle and tuning data in a developer-friendly JSON structure.
You decide how the data appears: configurator, dashboard, product page, portal, or internal tool.
Use selected vehicle context in quote flows, file requests, dealer routing, and internal workflows.
Start with one integration and grow into more endpoints and customer-facing experiences over time.
Developer examples
Real examples below are based on Remapdb OpenAPI endpoint contracts and example payloads from the current documentation.
curl -X GET "https://api.remapdb.com/v1/search?query=audi" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Accept-Language: en"{
"results": [
{
"type": { "id": 1, "name": "Cars & LCV" },
"manufacturer": { "id": 1234, "name": "Audi" },
"model": { "id": 123, "name": "A4" },
"generation": { "id": 1234, "name": "B5" },
"engine": { "id": 1234, "name": "2.2 i-CDTi 140hp 340Nm" }
}
],
"total": 456
}curl -X GET "https://api.remapdb.com/v1/engines/1234" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Accept-Language: en"{
"id": 1234,
"name": "1.8i 125hp 170Nm",
"engine_code": "XYZ",
"capacity": 1800,
"cylinders": 4,
"fuel": "Petrol",
"performance": {
"power": 150,
"torque": 270
},
"tuning": {
"stages": [
{
"stage_number": 1,
"performance": { "power": 482, "torque": 620 }
}
],
"options": [
{ "name": "EGR", "description": "Removal of EGR" }
]
}
}curl -X GET "https://api.remapdb.com/v1/subscription" \
-H "Authorization: Bearer YOUR_API_KEY"{
"api_key": "string",
"scopes": ["vdb_read"],
"calls_limit": 3600,
"created": "2024-12-04T08:05:15+00:00",
"subscription": {
"api_access": true,
"is_active": true,
"end_date": "2028-12-04T08:05:15+00:00"
}
}Data coverage
Use Remapdb as your tuning database API layer for vehicle identity, engine specs, stage data, and performance gains in your own workflow.
Make, model, generation, year range, variant, and vehicle structure where available.
Engine name, fuel type, displacement, stock power, stock torque, and related technical context.
Stage-level tuning information where available, including supported stage numbers.
Power and torque values, including original and tuned performance values.
Data that helps users understand whether a selected vehicle is relevant for a service or flow.
IDs and response fields your system can use to connect Remapdb data to your own interface.
Integration patterns
Pick the integration pattern that matches your architecture, from front-end configurators to back-end service workflows and dealer routing.
Use API data to build your own vehicle selector and tuning result UI. Best for custom websites and advanced landing pages.
Use your server to request Remapdb data and combine it with your business logic. Best for portals and secure workflows.
Connect vehicle data to file requests, quote flows, and service inquiries. Best for online tuning file providers.
Use selected vehicle and dealer context for partner and location-based flows. Best for multi-location tuning companies.
Use vehicle and tuning data inside product pages and compatibility journeys. Best for parts and module websites.
Build admin, support, sales, and quote-assistance tools for your team.
Developer setup
Start with secure credentials, validate requests in staging, then move endpoint by endpoint into your own production flow.
Choose a plan or add-on that includes API access.
Copy your API key from the API section and store it in secure server-side secrets.
Check endpoint contracts, parameters, limits, and implementation notes.
Start with vehicle lookup, then move to engine and tuning data endpoints.
Render the data in your own configurator, portal, dashboard, file-service flow, or internal tool.
Validate edge cases, missing values, and usage limits before production rollout.
API capabilities
Use this as your compact API capability checklist for planning rollout, architecture, and customer-flow coverage.
Related features
Use the Widget when you want the fastest embedded customer-facing experience.
Explore widgetUse the plugin if your website runs on WordPress and you want a simpler installation path.
View WordPress pluginPlanned feature for advanced database editing, custom records, imports, and deeper data control.
Explore customisationsSee how Remapdb helps with setup, documentation, installation, and technical guidance.
View supportCompare plans for API access, websites, branding, quote features, support, and advanced control.
See pricingFAQ
The API lets you use Remapdb vehicle and tuning data inside your own website, platform, dashboard, portal, quote flow, file-service flow, or internal tool.
It is best for businesses that need deeper integration than the standard Widget, including online tuning file providers, cloud-based platforms, dealer networks, and custom automotive websites.
Developers can build custom vehicle configurators, tuning result pages, internal lookup tools, quote flows, file request flows, dealer routing systems, and product-page data experiences.
API data supports vehicle lookup, engine information, tuning specs, performance gains, stage data, and selected vehicle context where available.
Yes. The API returns structured JSON responses suitable for modern web applications. Final response formats should always follow the live API reference documentation.
Remapdb includes data covering 22,000+ vehicle engines, with ongoing improvements and maintenance.
Yes. The API is the right path when you want your own vehicle selector, tuning result UI, quote flow, or platform-level experience.
No. The Widget is the fastest embedded option. The API is for teams that need deeper control and custom interfaces.
Yes. API integration requires technical implementation by your developer or technical team.
API access depends on your selected plan or add-on. Check Pricing for availability.
Yes. API reference documentation includes endpoints, parameters, examples, authentication guidance, and implementation notes.
Remapdb provides API reference documentation, access guidance, and support where available. Full custom development inside your own platform is handled by your technical team.
Ready to build with Remapdb data?
Use the Remapdb API to power vehicle lookup, tuning gains, configurators, quote flows, dashboards, and custom platform experiences.
22,000+ vehicle engines. JSON-ready data. Built for custom vehicle tuning integrations.