---
title: "Get appointment by ID"
method: GET
path: "/api/appointments/{appointment_id}"
tags: ["appointments"]
---

# Get appointment by ID

`GET /api/appointments/{appointment_id}`

Get a single appointment by ID.

## Path parameters

- `appointment_id` string, required

## Query parameters

- `with_details` boolean — Include full joins (operator, patient)

## Response `200`

Successful Response

- AppointmentFlatResponse — Response model for appointment flat.
  - `id` string, required
  - `patient_id` string, required
  - `operator_id` string, required
  - `appointment_datetime` string, required
  - `duration_seconds` integer, required
  - `status` string, required
  - `appointment_type_code` string, required
  - `location` string, required
  - `expert_in_person` boolean, nullable
  - `meeting_link` string, nullable
  - `payment_status` string, nullable
  - `paid_with_coupon` boolean, nullable
  - `patient_cost` number, nullable
  - `operator_cost` number, nullable
  - `notes` string, nullable
  - `notes_updated_at` string, nullable
  - `payment_id` string, nullable
  - `payment_completed_at` string, nullable
  - `payment_method` string, nullable
  - `stripe_checkout_session_id` string, nullable
  - `is_tax_deductible` boolean, nullable
  - `consent_present` boolean, nullable
  - `consent_valid` boolean, nullable
  - `created_at` string, required
  - `operator` object, nullable
  - `patient` object, nullable
  - `joint_operator_first_name` string, nullable — Other expert's first name when a joint appointment is collapsed into one row
  - `joint_operator_last_name` string, nullable — Other expert's last name when a joint appointment is collapsed into one row

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/corabea/apis/corabea-api.md) · [All operations](https://skmtc.dev/corabea/apis/corabea-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/corabea/corabea-api/revisions/13c1bce1bdc4/schema)
