---
title: "List All Appointments"
method: GET
path: "/provider/appointments"
tags: ["Appointment"]
---

# List All Appointments

`GET /provider/appointments`

Declined appointments are not returned by this endpoint.
Recurring appointments are stored once and expanded into one appointment object per occurrence
that falls within `start_date`/`end_date`. Occurrences that haven't been individually modified
share the base appointment's `id`; once an occurrence's status is changed (for example, checking
a patient in), it's returned as its own appointment with a new `id` and a `recurring_appointment_id`
pointing back to the original recurring appointment. See [Recurring Appointments](https://developers.hint.com/docs/recurring-appointments)
for details, including what happens when a series is edited after an occurrence has already split off.

## Query parameters

- `start_date` string
- `end_date` string
- `patient` string
- `status` string[]
- `limit` integer
- `offset` integer

## Response `200`

Successful response

- object[]
  - `id` string
  - `start` string
  - `end` string
  - `status` 'unconfirmed' | 'confirmed' | 'cancelled'
  - `workflow_status` 'check_in' | 'waiting_for_provider' | 'in_progress' | 'completed' | 'checked_out' | 'no_show'
  - `title` string
  - `description` string
  - `created_at` string
  - `updated_at` string
  - `recurring_appointment_id` string
  - `host` PublicUserBlueprintShared
    - `id` string
    - `email` string
    - `first_name` string
    - `last_name` string
    - `name` string
    - `phones` PublicPhoneBlueprintLeaf
      - `number` string
      - `type` string
    - `product_users` PublicPartnerAppUserBlueprintLeaf
      - `id` string
      - `roles` string
      - `product` PublicProductBlueprintLeaf
        - `id` string
        - `name` string
  - `location` PublicLocationBlueprintShared
    - `id` string
    - `address_city` string
    - `address_country` string
    - `address_line1` string
    - `address_line2` string
    - `address_state` string
    - `address_zip` string
    - `name` string
  - `attendees` object[]
    - `type` string
    - `patient` PublicPatientBlueprintMin
      - `id` string
      - `name` string
    - `contact` PublicAppointmentContactBlueprintMin
      - `first` string
      - `last` string
      - `email` string

---

[API](https://skmtc.net/hint/apis/partner-endpoints.md) · [All operations](https://skmtc.net/hint/apis/partner-endpoints/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/hint/partner-endpoints/revisions/a92ae2a6fa90/schema)
