Skip to main content

Remapdb Vehicle Tuning Database API

The Remapdb REST API lets you programmatically access comprehensive vehicle details, including types, manufacturers, models, engines, ECU and TCU info, tuning tools, dyno charts, and available tuning or remap stages with their performance gains.

Endpoints

Common Use Cases

  • Build a vehicle selector flow: Start from GET /types, then drill down through manufacturers, models, generations, and engines.
  • Validate API access before data calls: Use GET /subscription during app startup or before running batch jobs.
  • Power quoting and lead forms: Use /search to quickly resolve vehicle entities and then fetch full metadata by ID.
  • Render detailed vehicle pages: Fetch model, generation, and engine detail endpoints to display structured specs and tuning context.
  • Support multilingual customer experiences: Send Accept-Language per request to localize returned data.

Authentication

All endpoints require Bearer authentication. Generate and manage your API key from your Remapdb account, then send:
Authorization: Bearer <API_KEY>
Example:
curl -X GET "https://api.remapdb.com/v1/types" \
  -H "Authorization: Bearer <API_KEY>"

Base URL

https://api.remapdb.com/v1

Language

All methods support language selection via the Accept-Language header. If omitted, English (en) is used. Example:
curl "https://api.remapdb.com/v1/search?query=audi" \
  -H "Authorization: Bearer <API_KEY>" \
  -H "Accept-Language: nl"

Rate Limits

Rate limits apply to all API methods and are tied to your API key and subscription plan. Limits reset every hour.

Response and Errors

The API returns application/json responses.
  • Success responses return 2XX codes.
  • Error responses return 4XX or 5XX codes with an error object containing:
    • code (integer)
    • message (string)