---
title: "GET /ticket"
method: GET
path: "/ticket"
tags: ["ticket"]
---

# GET /ticket

`GET /ticket`

## Query parameters

- `id` string, uuid
- `created_at` string, timestamp with time zone
- `event_id` string, uuid
- `name` string, text
- `description` string, text
- `price` string, bigint
- `require_approval` string, boolean
- `start_at` string, timestamp with time zone
- `end_at` string, timestamp with time zone
- `capacity` string, bigint
- `remaining_capacity` string, bigint
- `organization_id` string, uuid
- `stripe_product_id` string, text
- `stripe_price_id` string, text
- `select` string
- `order` string
- `offset` string
- `limit` string

## Headers

- `Range` string
- `Range-Unit` string
- `Prefer` 'count=none'

## Response `200`

OK

- Ticket[]
  - `id` string, uuid, required — Note: This is a Primary Key.<pk/>
  - `created_at` string, timestamp with time zone, required
  - `event_id` string, uuid, required — Note: This is a Foreign Key to `event.id`.<fk table='event' column='id'/>
  - `name` string, text, required
  - `description` string, text
  - `price` integer
  - `require_approval` boolean, required
  - `start_at` string, timestamp with time zone
  - `end_at` string, timestamp with time zone
  - `capacity` integer
  - `remaining_capacity` integer
  - `organization_id` string, uuid — Note: This is a Foreign Key to `organization.id`.<fk table='organization' column='id'/>
  - `stripe_product_id` string, text
  - `stripe_price_id` string, text

## Other responses

- `206` — Partial Content

---

[API](https://skmtc.net/revent-app/apis/standard-public-schema.md) · [All operations](https://skmtc.net/revent-app/apis/standard-public-schema/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/revent-app/standard-public-schema/versions/90ce877204f2/schema)
