---
title: "Search Vehicle"
method: GET
path: "/business/v2/vehicles"
tags: ["Vehicles"]
---

# Search Vehicle

`GET /business/v2/vehicles`

Endpoint to find Vehicles using filtering parameters.

## Query parameters

- `text` string — A text to be searched on the number plate and description field.
- `ids` string[] — The IDs of the vehicles to search.
- `p` integer — It indicates the specific page to display (the counter starts from zero).
- `s` integer — It indicates the number of items per page.
- `d` 'ASC' | 'DESC' — It indicates how the pages are ordered.
- `props` string[] — It indicates the sorting direction applied to the above parameters. To apply a sorting on multiple parameters, set as many times the `props` parameter in the request.

## Response `200`

The returned array contains `Vehicle` resources.

- Vehicles
  - `total` integer — It represents the total number of available items in the list.
  - `pages` integer — It represents the total number of available pages.
  - `page_size` integer — It represents the number of items per page.
  - `current_page` integer — It indicates the current page (the counter starts from zero).
  - `results_size` integer — It indicates the size of the array results.
  - `results` Vehicle[]
    - `id` string — The `Vehicle` ID (sortable: no).
    - `number_plate` string — The plate number of the `Vehicle` (sortable: yes).
    - `description` string — The description of the `Vehicle` (sortable: no).
    - `vat_deductible` 'NONE' | '40' | '80' | '100'
    - `fuel_type` 'PETROL' | 'DIESEL' | 'METHANE' | 'LPG' | 'LNG' | 'ELECTRIC' | 'UNKNOWN'
    - `status` 'ACTIVE' | 'ARCHIVED'
    - `creation_time` string — The date and time when the `Vehicle` was created (sortable: yes).
    - `last_update_time` string — The last date and time when the `Vehicle` was updated (sortable: yes).
    - `card_ids` string[] — The list of `Card` ID associated with the vehicle (sortable: no).
    - `reimbursement_rate` number — The rate to apply for a `MileageReimbursement`, measured in main `Wallet` currency per km (sortable: no).

## Other responses

- `400` — Your request has missing arguments or is malformed.

---

[API](https://skmtc.net/soldo/apis/soldo-business-api-v2-0.md) · [All operations](https://skmtc.net/soldo/apis/soldo-business-api-v2-0/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/soldo/soldo-business-api-v2-0/revisions/7be21448a2b3/schema)
