---
title: "Get FHIR Datasets"
method: GET
path: "/api/v2/patients/{particle_patient_id}/fhir"
tags: ["Patients"]
---

# Get FHIR Datasets

`GET /api/v2/patients/{particle_patient_id}/fhir`

Returns a FHIR Bundle with all clinical resources for the patient — equivalent to a FHIR `$everything` call. No need to append `$everything` to the URL. Use `_since` to retrieve only data gathered after a specific timestamp, and `_count` with `_page_token` to page through results. To retrieve resources of a specific type, use `GET /fhir/{type}` instead.

## Path parameters

- `particle_patient_id` string, required

## Query parameters

- `_page_token` string
- `_count` integer
- `_since` string

## Response `200`

OK

- FhirBundle
  - `entry` FhirBundleEntry[] — The set of search results.
    - `fullUrl` string — The URL at which the resource represented by this entry can be accessed.
    - `resource` object — The resource represented by this bundle entry.
    - `search` FhirSearchSetEntryMetadata
      - `mode` string
  - `link` FhirLink[] — Links related to this bundle.
    - `relation` string — The type of relation between the bundle and the link.
    - `url` string — The URL at which the link can be accessed.
  - `resourceType` string — The type of the FHIR resource.
  - `total` integer — The total number of resources in the bundle.
  - `type` string — The type of bundle.

## Other responses

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

---

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