---
title: "Retrieve a list of vehicles"
method: GET
path: "/api/v1/vehicles"
tags: ["Vehicles"]
---

# Retrieve a list of vehicles

`GET /api/v1/vehicles`

Required scope: `vehicles:read`

## Query parameters

- `page` integer
- `perPage` integer
- `ownerId` integer — Filter to retrieve vehicles with specified team ID or user ID defined by ownerType
- `ownerType` 'team' | 'user', required — Filter by owner type of the vehicle

## Response `200`

List of vehicles that match the criteria

- OffsetBasedResponse40
  - `data` Vehicle1[], required
    - `id` integer — Id of the vehicle
    - `teamId` integer, nullable — Team Id that the vehicle belongs to
    - `userId` integer, nullable — User Id that the vehicle belongs to
    - `name` string, nullable — Name of the vehicle, can be customized by the user
    - `licensePlate` string, nullable — License plate of the vehicle
    - `batteryCapacityKwh` number, double, nullable — Battery capacity of the vehicle in Kwh
    - `maxPowerKwAc` number, double, nullable — Maximum AC charging power (in kW) that the vehicle can accept when charging via an AC charger
    - `maxPowerKwDc` number, double, nullable — Maximum DC charging power (in kW) that the vehicle can accept when using a DC fast charger
    - `displayName` string, nullable — Display name of the vehicle
    - `integrationId` integer, nullable — Id of the vehicle integration
    - `integrationStatus` string, nullable — Status of the vehicle integration
    - `manuallyConfiguredAt` string, date-time, nullable — Timestamp when the vehicle was manually configured (null if using catalog model)
    - `customSpecification` VehicleCustomSpecification
      - `brand` string, nullable — Manually configured vehicle brand
      - `model` string, nullable — Manually configured vehicle model
      - `vehicleType` string, nullable — Vehicle type
    - `vid` string, nullable — VID identifier for auto-charge
  - `meta` MontaPageMeta, required
    - `itemCount` integer, required
    - `currentPage` integer, required
    - `perPage` integer, required
    - `totalPageCount` integer, required
    - `totalItemCount` integer, required

## Other responses

- `400` — The request is invalid
- `401` — Consumer with provided credentials was not found
- `403` — Operator doesn't have access to resource
- `404` — Entity with the provided id was not found

---

[API](https://skmtc.net/monta/apis/monta-partner-api.md) · [All operations](https://skmtc.net/monta/apis/monta-partner-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/monta/monta-partner-api/versions/517e18f11015/schema)
