Vehicles
List all Vehicles
API Reference
Entities
- The entity endpoint
- POSTCreate an Individual
- POSTCreate a Corporation
- PUTUpdate an Entity
- GETRetrieve an Entity
- GETList all Entities
- Connect
- Verification Sessions
- Credit Scores
- Attributes
- Vehicles
- Identities
- Products
- Subscriptions
- Consent
Accounts
- The account endpoint
- POSTCreate an Account
- GETRetrieve an Account
- GETList all Accounts
- Updates
- Transactions
- Card Brand
- Attributes
- Payoffs
- Balances
- Sensitive
- Products
- Subscriptions
- Verification Sessions
- Consent
Payments
Supporting Endpoints
- Merchants
- Webhooks
- Reports
- Simulations (Dev)
- Health Check
Vehicles
List all Vehicles
GET
/
entities
/
:ent_id
/
vehicles
curl "https://production.methodfi.com/entities/ent_yVf3mkzbhz9tj/vehicles" \
-H "Method-Version: 2024-04-04" \
-H "Authorization: Bearer sk_WyZEWVfTcH7GqmPzUPk65Vjc"
{
"success": true,
"data": [
{
"id": "evhl_knqJgxKUnqDVJ",
"entity_id": "ent_zR3nJG3c99P3X",
"vehicles": [
{
"vin": "2G1125S36F9220155",
"year": "2015",
"make": "chevrolet",
"model": "impala",
"series": null,
"major_color": "black",
"style": "sedan/saloon"
},
{
"vin": "JN8AZ2NF0C9518827",
"year": "2012",
"make": "infiniti",
"model": "qx56",
"series": null,
"major_color": "black",
"style": "sport_utility_vehicle"
},
],
"status": "completed",
"error": null,
"updated_at": "2024-08-01T16:08:25.462Z",
"created_at": "2024-08-01T16:08:25.462Z"
}
{...}
],
"message": null
}
Retrieve a list of Vehicles for a specific Entity.
Path Parameters
ID of the Entity.
Query Parameters
ISO 8601 formatted date (YYYY-MM-DD) to filter for Vehicles created on and after the date provided.
ISO 8601 formatted date (YYYY-MM-DD) to filter for Vehicles created on and before the date provided.
The number of the page to return.
The ID of a resource from which a page should start or end. Mutually exclusive with page
.
The number of Vehicles to return per page.
Returns
Returns a list of Vehicles.
curl "https://production.methodfi.com/entities/ent_yVf3mkzbhz9tj/vehicles" \
-H "Method-Version: 2024-04-04" \
-H "Authorization: Bearer sk_WyZEWVfTcH7GqmPzUPk65Vjc"
{
"success": true,
"data": [
{
"id": "evhl_knqJgxKUnqDVJ",
"entity_id": "ent_zR3nJG3c99P3X",
"vehicles": [
{
"vin": "2G1125S36F9220155",
"year": "2015",
"make": "chevrolet",
"model": "impala",
"series": null,
"major_color": "black",
"style": "sedan/saloon"
},
{
"vin": "JN8AZ2NF0C9518827",
"year": "2012",
"make": "infiniti",
"model": "qx56",
"series": null,
"major_color": "black",
"style": "sport_utility_vehicle"
},
],
"status": "completed",
"error": null,
"updated_at": "2024-08-01T16:08:25.462Z",
"created_at": "2024-08-01T16:08:25.462Z"
}
{...}
],
"message": null
}
curl "https://production.methodfi.com/entities/ent_yVf3mkzbhz9tj/vehicles" \
-H "Method-Version: 2024-04-04" \
-H "Authorization: Bearer sk_WyZEWVfTcH7GqmPzUPk65Vjc"
{
"success": true,
"data": [
{
"id": "evhl_knqJgxKUnqDVJ",
"entity_id": "ent_zR3nJG3c99P3X",
"vehicles": [
{
"vin": "2G1125S36F9220155",
"year": "2015",
"make": "chevrolet",
"model": "impala",
"series": null,
"major_color": "black",
"style": "sedan/saloon"
},
{
"vin": "JN8AZ2NF0C9518827",
"year": "2012",
"make": "infiniti",
"model": "qx56",
"series": null,
"major_color": "black",
"style": "sport_utility_vehicle"
},
],
"status": "completed",
"error": null,
"updated_at": "2024-08-01T16:08:25.462Z",
"created_at": "2024-08-01T16:08:25.462Z"
}
{...}
],
"message": null
}