---
title: "Get an Appointment"
method: GET
path: "/api/2026-01-01/appointments/{appointment_id}"
tags: ["Appointments"]
---

# Get an Appointment

`GET /api/2026-01-01/appointments/{appointment_id}`

Retrieve detailed appointment information using its unique identifier

## Path parameters

- `appointment_id` string, uuid, required

## Response `200`

The appointment

- Appointment
  - `id` string, uuid, required
  - `start_at` string, date-time
  - `end_at` string, date-time
  - `staff_member_id` string, uuid
  - `patient_id` string, uuid
  - `location_id` string, uuid
  - `treatment_id` string, uuid
  - `first_visit` boolean
  - `cancelled_at` string, date-time, nullable
  - `cancelled_reason` string, nullable — The reason the appointment was cancelled. Free-text reasons entered by staff are mapped to 'Other' to prevent exposure of potentially sensitive information; only predefined reasons are returned as-is.
  - `booked_at` string, date-time
  - `no_show_at` string, date-time, nullable
  - `arrived_at` string, date-time, nullable
  - `archived_at` string, date-time, nullable
  - `checked_in_at` string, date-time, nullable
  - `state` 'reserved' | 'booked' | 'arrived' | 'no_show' | 'cancelled' | 'archived' — The current state of the appointment.

## Other responses

- `400` — Bad Request
- `404` — The appointment was not found
- `429` — Rate limit exceeded - 100 requests per minute per endpoint per clinic

---

[API](https://skmtc.net/jane/apis/jdp-api.md) · [All operations](https://skmtc.net/jane/apis/jdp-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/jane/jdp-api/revisions/119f3c4ad601/schema)
