> ## Documentation Index
> Fetch the complete documentation index at: https://docs.methodfi.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Vehicles

> Auto loan enrichment with VIN, make, model, and vehicle details.

For applications that deal with auto loans, whether that's auto refinancing, insurance, fleet management, or vehicle valuation, Method can enrich an Entity's profile with detailed vehicle information.

## How It Works

Vehicles is an Entity-level product: you request it against an Entity, not an individual Account. This means a single request returns all vehicles associated with that person. The response is synchronous, you'll get the data back immediately.

The `vehicles` array in the response contains one object per vehicle, each with:

* **vin:** Vehicle Identification Number
* **year:** Make year (e.g., "2021")
* **make:** Manufacturer (e.g., "honda")
* **model:** Model (e.g., "accord")
* **series:** Series/Trim/Category (e.g., "lx", "ex"), may be `null`
* **major\_color:** Primary color (e.g., "black")
* **style:** Body style (e.g., "sedan/saloon", "crew\_pickup", "sport\_utility\_vehicle")

This transforms an abstract "auto loan" line item into a concrete vehicle identity. Instead of showing "Auto Loan: \$18,450 balance," your product can display "2022 Honda Civic LX: \$18,450 remaining." This enrichment dramatically improves the user experience and enables vehicle-specific features like valuation estimates, equity calculations, and insurance comparisons.

## Quick Start

<CodeGroup>
  ```bash cURL theme={null}
  curl https://production.methodfi.com/entities/ent_au22b1fbFJbp8/vehicles \
    -X POST \
    -H "Method-Version: 2026-03-30" \
    -H "Authorization: Bearer sk_WyZEWVfTcH7GqmPzUPk65Vjc"
  ```

  ```javascript Node.js theme={null}
  const vehicles = await method
    .entities('ent_au22b1fbFJbp8')
    .vehicles
    .create();
  ```

  ```python Python theme={null}
  vehicles = method
    .entities('ent_au22b1fbFJbp8')
    .vehicles
    .create()
  ```
</CodeGroup>

## Multiple Vehicles

An Entity can have multiple vehicles. The response `vehicles` array will contain all of them. This is useful for presenting a vehicle selector in your UI or for fleet management use cases.

<Card title="Vehicles API Reference" icon="car" href="/reference/entities/vehicles/overview">
  Full API documentation for Vehicles.
</Card>
