---
title: "List check ins"
method: GET
path: "/v1/check_ins"
tags: ["Check ins"]
---

# List check ins

`GET /v1/check_ins`

Returns a paginated list of checkins

## Query parameters

- `limit` string
- `event_id` string
- `event_series_id` string
- `issued_ticket_id` string
- `created_at` integer
- `created_at.gt` integer
- `created_at.gte` integer
- `created_at.lt` integer
- `created_at.lte` integer
- `check_in_at` integer
- `check_in_at.gt` integer
- `check_in_at.gte` integer
- `check_in_at.lt` integer
- `check_in_at.lte` integer

## Response `200`

Successfully returned the list of check ins

- object
  - `data` CheckIn[]
    - `object` string
    - `id` string
    - `check_in_at` integer — Timestamp of when the ticket is checked in or out
    - `created_at` integer — Check in creation timestamp
    - `event_id` string — The ID of the associated event
    - `issued_ticket_id` string — The ID of the associated ticket that is to be checked in or out
    - `local_unique_id` string — The optional unique ID that safegards from accidentally checking in multiple times
    - `quantity` integer — in=1, out=-1
  - `links` object
    - `next` string, nullable
    - `previous` string, nullable

## Other responses

- `default` — Error schema

---

[API](https://skmtc.net/tickettailor/apis/ticket-tailor-api.md) · [All operations](https://skmtc.net/tickettailor/apis/ticket-tailor-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/tickettailor/ticket-tailor-api/revisions/7b222e8ec91c/schema)
