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

ent_id
string
required

ID of the Entity.

Query Parameters

from_date
string

ISO 8601 formatted date (YYYY-MM-DD) to filter for Vehicles created on and after the date provided.

to_date
string

ISO 8601 formatted date (YYYY-MM-DD) to filter for Vehicles created on and before the date provided.

page
string

The number of the page to return.

page_cursor
string

The ID of a resource from which a page should start or end. Mutually exclusive with page.

page_limit
string

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
}