Tenet Healthcare website screenshot

Tenet Healthcare

Tenet Healthcare is a diversified healthcare services company and Fortune 500 organization operating regionally focused, integrated healthcare delivery networks. The company operates acute care hospitals, ambulatory surgery centers (ASCs), and physician practices across the United States through United Surgical Partners International (USPI) and Tenet Health. Tenet also provides revenue cycle management services through Conifer Health Solutions.

3 APIs 0 Features
HealthcareHospitalsAmbulatory Surgery CentersRevenue Cycle ManagementFortune 500

APIs

Conifer Health Solutions Revenue Cycle API

Revenue cycle management API from Conifer Health Solutions, a Tenet Healthcare subsidiary providing end-to-end RCM services including patient access, health information manageme...

USPI Ambulatory Surgery Center API

United Surgical Partners International (USPI) integration APIs for ambulatory surgery center scheduling, patient registration, procedure management, and clinical data exchange. ...

Tenet Health Patient Portal API

Patient-facing digital health API enabling access to medical records, appointment scheduling, test results, care team communications, and bill payment across Tenet Health hospit...

Collections

Pricing Plans

Rate Limits

Tenet Healthcare Rate Limits

1 limits

RATE LIMITS

FinOps

Semantic Vocabularies

Tenet Healthcare Context

10 classes · 12 properties

JSON-LD

API Governance Rules

Tenet Healthcare API Rules

10 rules · 2 errors 5 warnings 3 info

SPECTRAL

JSON Structure

Tenet Healthcare Patient Structure

0 properties

JSON STRUCTURE

Example Payloads

Press

Tenet to deploy Commure's AI scribe at physician network

2026-05-25

Press Release issued on February

2026-05-25

#WhatsUpTenet Here's the latest across Tenet Healthcare's ...

2026-05-25

Tenet Announces Accretive Transaction and Previews ...

2026-05-25

Artificial Intelligence at Tenet Healthcare

2026-05-25

Resources

🔗
LinkedIn
LinkedIn
🔗
Website
Website
🔗
Website
Website
🔗
Investor Relations
Investor Relations
🔗
Press Room
Press Room
🔗
Careers
Careers
🔗
Conifer Health Solutions
Conifer Health Solutions
🔗
USPI
USPI
🔗
JSONLD
JSONLD
🔗
JSONSchema
JSONSchema
🔗
JSONSchema
JSONSchema
🔗
JSONStructure
JSONStructure
🔗
SpectralRules
SpectralRules
🔗
Vocabulary
Vocabulary

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: Tenet Healthcare FHIR R4 Patient API
  version: R4
request:
  auth:
    type: oauth2
    flow: authorization_code
    authorizationUrl: https://auth.tenethealth.com/oauth2/authorize
    accessTokenUrl: https://auth.tenethealth.com/oauth2/token
    credentials:
      clientId: '{{clientId}}'
      clientSecret: '{{clientSecret}}'
items:
- info:
    name: Patients
    type: folder
  items:
  - info:
      name: Get Patient
      type: http
    http:
      method: GET
      url: https://api.tenethealth.com/fhir/r4/Patient/:id
      params:
      - name: id
        value: ''
        type: path
        description: Patient FHIR resource ID
    docs: Retrieve a FHIR Patient resource by patient identifier. Returns patient demographic information including name,
      date of birth, gender, contact information, and insurance details.
- info:
    name: Appointments
    type: folder
  items:
  - info:
      name: List Patient Appointments
      type: http
    http:
      method: GET
      url: https://api.tenethealth.com/fhir/r4/Patient/:id/Appointment
      params:
      - name: id
        value: ''
        type: path
        description: Patient FHIR resource ID
      - name: date
        value: ''
        type: query
        description: Filter appointments by date (YYYY-MM-DD)
      - name: status
        value: ''
        type: query
        description: Filter by appointment status
    docs: Retrieve all appointments for a specific patient including scheduled, pending, and completed appointments. Returns
      appointment date, time, provider, location, and appointment type.
  - info:
      name: Search Appointments
      type: http
    http:
      method: GET
      url: https://api.tenethealth.com/fhir/r4/Appointment
      params:
      - name: patient
        value: ''
        type: query
        description: Patient reference (e.g., Patient/12345)
      - name: date
        value: ''
        type: query
        description: Appointment date filter
      - name: status
        value: ''
        type: query
        description: Appointment status filter
      - name: _count
        value: ''
        type: query
        description: Maximum results per page
    docs: Search for appointments using FHIR search parameters. Supports filtering by patient, date range, practitioner, location,
      and appointment type.
- info:
    name: Observations
    type: folder
  items:
  - info:
      name: List Patient Observations
      type: http
    http:
      method: GET
      url: https://api.tenethealth.com/fhir/r4/Patient/:id/Observation
      params:
      - name: id
        value: ''
        type: path
        description: Patient FHIR resource ID
      - name: category
        value: ''
        type: query
        description: Observation category (vital-signs, laboratory, imaging, survey)
      - name: date
        value: ''
        type: query
        description: Date range filter
      - name: _count
        value: ''
        type: query
        description: Maximum results per page
    docs: Retrieve clinical observations for a patient including vital signs, laboratory results, imaging results, and clinical
      assessments. Supports filtering by observation category and date range.
- info:
    name: Conditions
    type: folder
  items:
  - info:
      name: List Patient Conditions
      type: http
    http:
      method: GET
      url: https://api.tenethealth.com/fhir/r4/Patient/:id/Condition
      params:
      - name: id
        value: ''
        type: path
        description: Patient FHIR resource ID
      - name: clinical-status
        value: ''
        type: query
        description: Condition status (active, resolved, inactive)
    docs: Retrieve active and historical conditions (diagnoses, problems, and health concerns) for a patient in FHIR Condition
      format with ICD-10 coding.
- info:
    name: Medications
    type: folder
  items:
  - info:
      name: List Patient Medications
      type: http
    http:
      method: GET
      url: https://api.tenethealth.com/fhir/r4/Patient/:id/MedicationRequest
      params:
      - name: id
        value: ''
        type: path
        description: Patient FHIR resource ID
      - name: status
        value: ''
        type: query
        description: Medication request status (active, completed, cancelled)
    docs: Retrieve medication requests (prescriptions) for a patient with drug name, dosage, frequency, prescriber, and prescription
      status.
- info:
    name: Documents
    type: folder
  items:
  - info:
      name: List Patient Documents
      type: http
    http:
      method: GET
      url: https://api.tenethealth.com/fhir/r4/Patient/:id/DocumentReference
      params:
      - name: id
        value: ''
        type: path
        description: Patient FHIR resource ID
      - name: type
        value: ''
        type: query
        description: Document type LOINC code
    docs: Retrieve document references for a patient including clinical notes, discharge summaries, radiology reports, and
      consent documents. Returns document metadata and retrieval links.
bundled: true