- Getting Started
- Authentication & Authorization
- Developer Onboarding
- API Usage Guidelines
- US Core & USCDI Mapping
- APIs
- Allergies and Intolerances
- Assessment and Plan of Treatment
- Care Team Members
- Clinical Notes
- Goals
- Clinical Tests
- Diagnostic Imaging
- Encounter Information
- Group
- Health Concerns
- Implantable Devices
- Immunizations
- Laboratory
- Medications
- Patient Demographics
- Procedures
- Provenance
- Smoking Status
- Vital Signs
- Allergies and Intolerances
- Legal & Compliance
By Resource ID
Developing
Sandbox
https://fhir-dev.edvak.com/fhir
Sandbox
https://fhir-dev.edvak.com/fhir
GET
https://fhir-dev.edvak.com/fhir
id
as a path parameter.Request
Authorization
Add the parameter
Authorization
to Headers,whose value is to concatenate the Token after the Bearer.Example:
Authorization: Bearer ********************
Path Params
id
string
required
Example:
123
Responses
🟢200Success
application/json
Body
resourceType
string
required
id
string
required
meta
object
required
lastUpdated
string
required
type
string
required
total
integer
required
link
array [object {2}]
required
relation
string
optional
url
string
optional
entry
array [object {3}]
optional
fullUrl
string
optional
resource
object
optional
search
object
optional
Example
{
"resourceType": "Bundle",
"id": "6bf559b9-dcbf-43f7-8106-a8bf76d1410e",
"meta": {
"lastUpdated": "2025-05-12T17:47:15.301+00:00"
},
"type": "searchset",
"total": 1,
"link": [
{
"relation": "self",
"url": "https://fhir-dev.edvak.com/fhir/AllergyIntolerance/"
}
],
"entry": [
{
"fullUrl": "https://fhir-dev.edvak.com/fhir/AllergyIntolerance/326",
"resource": {
"resourceType": "AllergyIntolerance",
"id": "326",
"meta": {
"versionId": "1",
"lastUpdated": "2025-05-09T11:42:42.602+00:00",
"source": "#aIPS1bOHrwgcwTik"
},
"clinicalStatus": {
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical",
"code": "active",
"display": "Active"
}
]
},
"verificationStatus": {
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/allergyintolerance-verification",
"code": "confirmed",
"display": "Confirmed"
}
]
},
"code": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "261665006",
"display": "Unknown"
}
],
"text": "Peanut Allergy"
},
"patient": {
"reference": "Patient/213",
"display": "John Doe"
},
"reaction": [
{
"manifestation": [
{
"coding": [
{
"system": "http://snomed.info/sct",
"code": "39579001",
"display": "Anaphylaxis"
}
],
"text": "Severe anaphylactic reaction"
}
],
"severity": "severe"
}
]
},
"search": {
"mode": "match"
}
}
]
}