Vehicle API · Schema
InventoryItem
A vehicle in dealer inventory
AutomotiveCarsEdmundsPricingVehicles
Properties
| Name | Type | Description |
|---|---|---|
| vin | string | 17-character Vehicle Identification Number |
| type | string | New or used |
| make | string | |
| model | string | |
| year | integer | |
| styleId | integer | |
| trim | string | |
| price | number | Asking price |
| dealerPrice | number | Edmunds estimated dealer price |
| dealerId | integer | |
| zip | string | |
| mileage | integer | Odometer reading (for used vehicles) |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/vehicle-api/refs/heads/main/json-schema/vehicle-api-inventory-item-schema.json",
"title": "InventoryItem",
"description": "A vehicle in dealer inventory",
"type": "object",
"properties": {
"vin": {
"type": "string",
"description": "17-character Vehicle Identification Number",
"example": "4T1C11AK0SU123456"
},
"type": {
"type": "string",
"description": "New or used",
"enum": [
"new",
"used",
"cpo"
],
"example": "new"
},
"make": {
"type": "string",
"example": "toyota"
},
"model": {
"type": "string",
"example": "camry"
},
"year": {
"type": "integer",
"example": 2025
},
"styleId": {
"type": "integer",
"example": 401890697
},
"trim": {
"type": "string",
"example": "LE"
},
"price": {
"type": "number",
"description": "Asking price",
"example": 27515
},
"dealerPrice": {
"type": "number",
"description": "Edmunds estimated dealer price",
"example": 26800
},
"dealerId": {
"type": "integer",
"example": 12345
},
"zip": {
"type": "string",
"example": "90210"
},
"mileage": {
"type": "integer",
"description": "Odometer reading (for used vehicles)",
"example": 0
}
}
}
Work with this as data
Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/vehicle-api-inventory-item"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.