---
title: "View license plate reads lookup results"
method: GET
path: "/reads/lookup/page/{pageId}"
tags: ["Plate Reads"]
---

# View license plate reads lookup results

`GET /reads/lookup/page/{pageId}`

View the results of a license plate read lookup
## Required API scope
[plate-reads:lookup](https://docs.flocksafety.com/developer-hub/docs/client-credentials)

## Path parameters

- `pageId` string, required

## Response `200`

List of license plate reads

- LookupResult — Results
  - `results` LicensePlateRead[], required — List of license plate reads
    - `id` string, required — The ID that identifies this specific license plate read.
    - `capturedAt` string, required — The timestamp (in RFC3339 UTC format) indicating when the license plate was captured.
    - `device` Device, required
      - `id` string, required — The ID of the device.
      - `name` string, required — The name of the device.
      - `location` Location, required — either latitude and longitude is required, or one of streetAddress/city/state
        - `name` string — commmon name to identify location by
        - `latitude` number
        - `longitude` number
        - `streetAddress` string
        - `city` string
        - `state` string
        - `country` string
        - `additionalMetadata` AdditionalMetadata — flat json object, defaults to {} and returned as {} if not provided
          - `type` 'string' | 'number' | 'boolean' — What type the value of the metadata value is
          - `value` object — value of the metadata. Must be a string, number, or boolean
      - `network` Network, required — The network that the device belongs to.
        - `id` string, required — The ID for the network
        - `name` string, required — The name of the network
    - `state` StateInfo
      - `state` string, required — The state that the license plate is from.
      - `confidence` number, required — A number expressing certainty in that the state was correctly identified. The range is between 0.0 and 1.0
    - `plate` PlateInfo, required
      - `plate` string, required — The license plate.
      - `confidence` number, required — A number expressing certainty in that the license plate was correctly identified. The range is between 0.0 and 1.0
    - `link` string — A link to view the license plate read within our UI.
  - `nextPageId` string — The ID of the next page. This ID is used in the [Get Results](#/paths/~1reads~1lookup/get) endpoint.
  - `previousPageId` string — The ID of the previous page. This ID is used in the [Get Results](#/paths/~1reads~1lookup/get) endpoint.
  - `totalItems` number, required — The total number of reads that are available to view.

## Other responses

- `401` — The provided token is either expired or invalid.
- `403` — The provided token is not authorized to access this endpoint.
- `422` — The given request contains one or more errors.
- `429` — The maximum number of requests you can perform per second has been exceeded.

---

[API](https://skmtc.net/flocksafety/apis/oauth-api.md) · [All operations](https://skmtc.net/flocksafety/apis/oauth-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/flocksafety/oauth-api/revisions/126df7964ba5/schema)
