---
title: "View procedures"
method: GET
path: "/procedures"
tags: ["Procedures"]
---

# View procedures

`GET /procedures`

This endpoint returns a list of procedures.
 You can filter by provider_id, patient_id, appointment_id, started_after, started_before, ended_after, ended_before or
 updated_since. You must provide at least one filter. You may additionally narrow any of these filters by location_id,
 but location_id alone does not satisfy the at-least-one-filter requirement.

## Query parameters

- `subdomain` string, required
- `sort` string
- `location_id` integer
- `provider_id` integer
- `patient_id` integer
- `appointment_id` integer
- `updated_since` string, date-time
- `started_after` string, date
- `started_before` string, date
- `ended_after` string, date
- `ended_before` string, date
- `start_cursor` string
- `end_cursor` string
- `per_page` integer

## Headers

- `Nex-Api-Version` string, required

## Response `200`

Successful

- APIV2EntitiesProcedureCollectionResponseWithCursor — API_V2_Entities_Procedure_Collection_Response_WithCursor model
  - `code` boolean — Indicates the success or failure of the request
  - `description` string — Additional context on the request to help with debugging.
  - `error` string[] — Any errors that occur during the execution of the request.
  - `data` APIV2EntitiesProcedure[]
    - `id` integer — Procedure id
    - `location_id` integer, nullable — Location id
    - `patient_id` integer, nullable — Patient id
    - `provider_id` integer, nullable — Provider id
    - `appointment_id` integer, nullable — Appointment id. Null when the procedure is not attached to an appointment
    - `code` string, nullable — Procedure code
    - `name` string, nullable — Procedure name
    - `status` 'planned' | 'scheduled' | 'completed' | 'inactive' | 'referred', nullable — Procedure status
    - `updated_at` string, date-time — Procedure update date in UTC
    - `body_site` APIV2EntitiesProcedureBodySite
      - `tooth` string[] — Tooth identifier strings, typically tooth numbers
      - `surface` string — Tooth surface codes
    - `fee` APIV2EntitiesPrice
      - `amount` string — The currency value, in whole units (e.g. dollars)
      - `currency` string — The ISO currency code
    - `start_date` string, date, nullable — Start date for procedure
    - `end_date` string, date, nullable — End date for procedure
  - `page_info` object — Pagination information that can be used for fetching previous and next pages.

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found
- `500` — Internal Server Error

---

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