Documentation

Welcome to Vehicle Databases API's Documentation

Owners Manual

GETJSON Response

Overview

The API provides detailed information and instructions for the proper use, maintenance, and care of a vehicle. It includes specifications, operating guidelines, safety precautions, and recommended service intervals. The manual covers essential topics such as starting and stopping procedures, instrument panel functions, fluid capacities, tire pressure, and troubleshooting tips. It also offers guidance on regular inspections, maintenance schedules, and basic repairs to ensure optimal performance and safety. Designed for ease of understanding, the owner's manual helps car owners operate their vehicle correctly and maintain it in good condition throughout its lifespan.

COVERAGE

US and CAD Regions Vehicles.

SUPPORT

Works for 17 characters VINs

HTTP Request

Endpoint

GET https://api.vehicledatabases.com/owner-manual/{vin}

Example — Python / Requests

Target:
Client:
import requests
response = requests.get(
    "https://api.vehicledatabases.com/owner-manual/{vin}",
    headers={"x-authkey": "YOUR_API_KEY"}
)
print(response.json())

GET Parameters

ParameterRequiredDescription
vin17 characters VIN number

JSON Response

The response is a JSON of all the information associated with a VIN number. Each vin number has the following elements:

Response Fields

ParameterDescription
status"success" or "error"
dataAn object containing all data available.

Example Response

{
    "status": "success",
    "vin":"5J8YD4H83LL002807",
    "data": {
        "year": "2020",
        "make": "Acura",
        "model": "MDX",
        "path": "https://vhr.nyc3.cdn.digitaloceanspaces.com/owners-manual/acura/2020_acura_mdx_2020%20MDX%20Owner%27s%20Manual%20Revised%20053123.pdf"
    }
}

Error Responses

error
status

When an error occurs, the API returns an error status with a code and message.

CodeDescriptionResolution
400Record(s) were not found for this vehicle.Verify the VIN or YMM is correct.
401Invalid API KeyCheck your API key for correctness and ensure it is properly formatted.
403Rate limit exceededYou have exceeded the number of allowed requests in a given time period. Please wait and try again.
422Validation errorOne or more parameters are invalid. Check the request parameters for correctness.
500Internal server errorAn unexpected error occurred on the server. Please try again later or contact support.