---
title: "Get seen license plates"
method: GET
path: "/cameras/v1/analytics/lpr/images"
tags: ["LPR"]
---

# Get seen license plates

`GET /cameras/v1/analytics/lpr/images`

Returns the timestamps, detected license plate numbers, and images of all license plates seen by a camera.

Only works for cameras that are LPR enabled.

Response may be paginated if page_token exists.

## Query parameters

- `camera_id` string, required — The unique identifier of the camera.
- `license_plate` string — License plate number to filter by.
- `start_time` integer — The start of the time range. Formatted as a Unix timestamp in seconds. Defaults to a day from the current time.
- `end_time` integer — The end of the time range. Formatted as a Unix timestamp in seconds. Defaults to the current time.
- `page_size` integer — The number of items returned in a single response. Default is 100. Max is 200.
- `page_token` integer — The pagination token used to fetch the next page of results.

## Response `200`

OK

- LPRImagesResponse
  - `camera_id` string — The unique identifier of the camera.
  - `detections` LPRImageItem[] — The detected license plates
    - `image_url` string — The image of the detected license plate.
    - `license_plate` string — Detected license plate number.
    - `timestamp` integer — The timestamp when the license plate was detected. Formatted as a Unix timestamp in seconds.
    - `vehicle_image_url` string — The image of the detected vehicle, if it exists.
  - `next_page_token` integer — The pagination token used to fetch the next page of results.

---

[API](https://skmtc.net/verkada/apis/api-tokens.md) · [All operations](https://skmtc.net/verkada/apis/api-tokens/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/verkada/api-tokens/revisions/4a79d2d949a6/schema)
