Documentation
Welcome to Vehicle Databases API's Documentation
Owners Manual
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
import requests
response = requests.get(
"https://api.vehicledatabases.com/owner-manual/{vin}",
headers={"x-authkey": "YOUR_API_KEY"}
)
print(response.json())GET Parameters
| Parameter | Required | Description |
|---|---|---|
| vin | ✓ | 17 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
| Parameter | Description |
|---|---|
| status | "success" or "error" |
| data | An 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
When an error occurs, the API returns an error status with a code and message.
| Code | Description | Resolution |
|---|---|---|
| 400 | Record(s) were not found for this vehicle. | Verify the VIN or YMM is correct. |
| 401 | Invalid API Key | Check your API key for correctness and ensure it is properly formatted. |
| 403 | Rate limit exceeded | You have exceeded the number of allowed requests in a given time period. Please wait and try again. |
| 422 | Validation error | One or more parameters are invalid. Check the request parameters for correctness. |
| 500 | Internal server error | An unexpected error occurred on the server. Please try again later or contact support. |