Patient360

Unlock Complete Clinical Histories

Access and exchange clinical records for a holistic view of each patient.

National data network
Easy-to-implement FHIR APIs
Actionable data

Trusted by Leaders in Healthcare

Data Types and Coverage

Patient360 leverages our industry-leading Health Interoperability Platform and Health Information Network to aggregate and process patient data into an accessible format.

With Patient360 teams can access:

Important clinical information is missing in nearly one in seven visits.¹ With complete clinical data at hand, providers can offer more informed treatment decisions, avoid duplicative testing, and build lasting patient relationships.

220M+
Patients
750K+
Clinicians
120K+
Care sites

Social determinants of health data

As much as 80% of a patient’s health outcomes are attributable to socioeconomic and other non-medical factors.²’³ With SDOH data, providers and care teams gain a deep understanding of their patients’ health drivers, address care barriers, and refine treatment plans.

280M+
Individuals
10K+
Data sources
442+
SDOH attributes
4
SDOH scores

Data Types and Coverage

Patient360 leverages our industry-leading Health Interoperability Platform to aggregate and process patient data into an accessible format. With Patient360 teams can access:

Important clinical information is missing in nearly one in seven visits.¹ With complete clinical data at hand, providers can offer more informed treatment decisions, avoid duplicative testing, and build lasting patient relationships.

220M+
Patients
750K+
Clinicians
120K+
Care sites

As much as 80% of a patient’s health outcomes are attributable to socioeconomic and other non-medical factors.²’³ With SDOH data, providers and care teams gain a deep understanding of their patients’ health drivers, address care barriers, and refine treatment plans.

280M+
Individuals
10K+
Data sources
442+
SDOH attributes
4
SDOH scores

Patient360 Empowers Care Teams

Health Gorilla gives me visibility into the care my patient received outside of my practice, allowing me to provide high quality, efficient health care.
Shyamali Singhal, MD PhD
Executive Director
With Patient360, we’ve been able to save an incredible amount of time when it comes to transferring over patient’s medical records in real-time with just a few clicks.
Max Tselevich
CEO
We spent the past few months evaluating solutions to exchange data with clinical systems. Health Gorilla's extensive API capabilities and product suite make it the undisputed leader in the industry.
Peyton Reaves
CTO
Get in touch with our interoperability experts to learn more.

Patient360 Use Cases

With a treatment purpose, care teams can leverage Patient360 to retrieve their patient's medical records instantly from most major EMR systems.

Virtual Care

Streamline patient intake and share progress notes with other clinicians across the country.

Chronic Condition Management

Inform recommendations for prevention, management, or treatment of chronic conditions.

Specialty Pharmacies

Identify effective, cost-efficient therapy alternatives by analyzing your patients’ clinical and medication history.

Care Coordination

Ensure that updated and actional clinical records are shared between each provider treating a shared patient.

Specialty CLIA Labs

Ensure results are correctly interpreted and create optimal treatment plans for patients receiving complex care.

Success Story: IntellaTriage

To properly facilitate patient triage for hospitals and clinics, IntellaTriage nurses needed access to clinical data like medications, allergies, procedures, and recent encounters in real-time. Getting this data is typically a highly manual and burdensome process. With Patient360, they completely automated their data retrieval efforts.

Better care

Nurses have all the data they need at their fingertips to inform care.

Lower burden

Nurses save time by not having to log in to multiple EMRs and find old records.

More secure

By eliminating faxes, records transmit securely from the care site into Health Gorilla.

Efficient triage

IntellaTriage nurses efficiently get patients to the right place at the right time.

Our partnership with Health Gorilla allows us to greatly improve the speed and accuracy of our triage as we quickly access our patient’s comprehensive medical history on the platform.
Daniel Reese
CEO

Designed for Developers

Integrate Lab Network natively into your platform or app with our FHIR-based API and production-ready integrations.

  • Software + API
  • Sample code and examples
  • Sandbox for development and testing
  • Versioned API changes
  • Workflow diagrams
  • Metadata support
View API Docs
	

1
const fetch = require('node-fetch');
2
3
let url = 'https://sandbox.healthgorilla.com/fhir/Patient';
4
5
let options = {
6
method: 'POST',
7
headers: {'Content-Type': 'application/json'},
8
body: '{"resourceType":"Patient","name":{"use":"usual"}}'
9
};
10
11
fetch(url, options)
12
.then(res => res.json())
13
.then(json => console.log(json))
14
.catch(err => console.error('error:' + err));
	
require 'uri'
require 'net/http'
require 'openssl'
url = URI("https://sandbox.healthgorilla.com/fhir/Patient")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\"resourceType\":\"Patient\",\"name\":{\"use\":\"usual\"}}"
response = http.request(request)
puts response.read_body
	
fetch("https://sandbox.healthgorilla.com/fhir/Patient", {
"method": "POST",
"headers": {
"Content-Type": "application/json"
},
"body": "{\"resourceType\":\"Patient\",\"name\":{\"use\":\"usual\"}}"
})
.then(response => {
console.log(response);
})
.catch(err => {
console.error(err);
});
	
import requests
url = "https://sandbox.healthgorilla.com/fhir/Patient"
payload = {
"resourceType": "Patient",
"name": {"use": "usual"}
}
headers = {"Content-Type": "application/json"}
response = requests.request("POST", url, json=payload, headers=headers)
print(response.text)

Secure and Trusted

Health Gorilla's Health Interoperability Platform meets the highest data certifications for privacy and security, keeping your data safe.

We're SOC-2 Type 2 certified, independently audited on a routine basis, and HITRUST R2 certified.

Our platform is also compliant with FHIR R4 profiles, and we're a trusted partner to major EMR/EHR vendors.

Get Started Today

Get in touch with our interoperability experts to learn more.

References
¹ Smith, P. C., Araya-Guerra, R., Bublitz, C., Parnes, B., Dickinson, L. M., Van Vorst, R., Westfall, J. M., & Pace, W. D. (2005, February 2). Missing clinical information during primary care visits. National Library of Medicine. Retrieved June 16, 2022, from https://pubmed.ncbi.nlm.nih.gov/15687311/
² Hood, C. M., Gennuso, K. P., Swain, G. R., & Catlin, B. B. (2016). County health Rankings: Relationships between determinant factors and health outcomes. American journal of preventive medicine, 50(2), 129–135. https://doi.org/10.1016/j.amepre.2015.08.024
³ Magnan, S. (2017, October 9). Social determinants of health 101 for health care: Five plus Five. National academy of medicine. Retrieved June 24, 2022, from https://nam.edu/social-determinants-of-health-101-for-health-care-five-plus-five/
⁴ Llamas, M. (2022, April 27). How to obtain medical records. Drugwatch. Retrieved June 24, 2022, from https://www.drugwatch.com/health/how-to-obtain-medical-records/