1. Download each resource type separately
1. Download Each Resource Type Separately from b.well FHIR server (US Core V3)
This section provides documentation on how to download individual resource types from the b.well FHIR server, adhering to the US Core V3 specifications.
Base URL
The base URL for the b.well FHIR server is: https://fhir.client-sandbox.icanbwell.com/
Authentication
All requests to the b.well FHIR server require proper authentication. Please ensure you have a valid access token. Include the access token in the Authorization header of your requests.
Authorization: Bearer [Your Access Token]
Downloading Resource Types
You can download specific resource types by appending the resource type to the base URL. The following examples demonstrate how to retrieve common US Core V3 resource types.
Patient
To retrieve Patient resources:
GET https://fhir.client-sandbox.icanbwell.com/Patient
Observation
To retrieve Observation resources:
GET https://fhir.client-sandbox.icanbwell.com/Observation
Condition
To retrieve Condition resources:
GET https://fhir.client-sandbox.icanbwell.com/Condition
MedicationRequest
To retrieve MedicationRequest resources:
GET https://fhir.client-sandbox.icanbwell.com/MedicationRequest
Immunization
To retrieve Immunization resources:
GET https://fhir.client-sandbox.icanbwell.com/Immunization
Procedure
To retrieve Procedure resources:
GET https://fhir.client-sandbox.icanbwell.com/Procedure
Encounter
To retrieve Encounter resources:
GET https://fhir.client-sandbox.icanbwell.com/Encounter
Parameters for Filtering and Pagination
You can refine your queries using standard FHIR search parameters for filtering, sorting, and pagination.
Example: Get Patients named "John Doe"
GET https://fhir.client-sandbox.icanbwell.com/Patient?name=John%20Doe
Example: Paginate results (e.g., retrieve the next 10 results)
GET https://fhir.client-sandbox.icanbwell.com/Patient?_count=10&_getpages=...
For a comprehensive list of search parameters and more advanced querying, refer to the FHIR US Core V3 Implementation Guide and the general FHIR Search documentation.
Updated 4 months ago
