---
title: "GET vehicle usage"
method: GET
path: "/v1/vehicles/{uuid}/usages"
tags: ["Vehicle usages"]
---

# GET vehicle usage

`GET /v1/vehicles/{uuid}/usages`

Get all vehicle usage records, paginated.

## Path parameters

- `uuid` string, uuid, required

## Query parameters

- `limit` integer
- `pageNumber` integer
- `sortBy` 'uuid' | 'source' | 'date' | 'current' | 'usage' | 'state' | 'usageType'
- `reverse` boolean

## Response `200`

Successful operation.

- ApiPageUsageDto
  - `items` UsageDto[]
    - `uuid` string, uuid
    - `source` 'MANUAL_DRIVER' | 'MANUAL_FLEET_MANAGER' | 'INVOICE' | 'FUEL_PURCHASE' | 'TELEMATICS' | 'VEHICLE_CHECK'
    - `date` string, date-time
    - `current` boolean
    - `usage` number
    - `state` 'ACCEPTED' | 'NOT_ACCEPTED'
    - `usageType` 'DISTANCE' | 'OPERATING_HOURS'
  - `page` ApiPageInformation
    - `pageNumber` integer
    - `limit` integer
  - `totalItems` integer

## Other responses

- `400` — Bad request - information on the invalid fields will be provided in the response body
- `404` — Vehicle not found.

---

[API](https://skmtc.net/avrios/apis/fleet-api-specifications.md) · [All operations](https://skmtc.net/avrios/apis/fleet-api-specifications/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/avrios/fleet-api-specifications/revisions/78fc4b609513/schema)
