Community Health Systems Claims API

Adjudicated claims and encounter data

Operations 1

GET /ExplanationOfBenefit Search claims #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/community-health-systems-claims-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

community-health-systems-claims-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Community Health Systems Patient Access Claims API
  description: Community Health Systems provides healthcare interoperability APIs pursuant to the CMS Interoperability and Patient Access Final Rule (CMS-9115-F). The Patient Access API allows third-party applications to retrieve data concerning adjudicated claims, encounters, formulary data, and clinical data using FHIR standards.
  version: '2026-01-01'
  contact:
    name: Community Health Systems
    url: https://www.chs.net
servers:
- url: https://api.chs.net/fhir/r4
  description: FHIR R4 Production Server
security:
- oauth2: []
tags:
- name: Claims
  description: Adjudicated claims and encounter data
paths:
  /ExplanationOfBenefit:
    get:
      operationId: searchClaims
      summary: Search claims
      description: Retrieve adjudicated claims data as ExplanationOfBenefit resources.
      tags:
      - Claims
      parameters:
      - name: patient
        in: query
        required: true
        schema:
          type: string
      responses:
        '200':
          description: FHIR Bundle of ExplanationOfBenefit resources
          content:
            application/fhir+json:
              schema:
                $ref: '#/components/schemas/Bundle'
components:
  schemas:
    Bundle:
      type: object
      properties:
        resourceType:
          type: string
          const: Bundle
        type:
          type: string
        total:
          type: integer
        entry:
          type: array
          items:
            type: object
            properties:
              resource:
                type: object
  securitySchemes:
    oauth2:
      type: oauth2
      flows:
        authorizationCode:
          authorizationUrl: https://api.chs.net/oauth2/authorize
          tokenUrl: https://api.chs.net/oauth2/token
          scopes:
            patient/*.read: Read access to patient data
            launch/patient: Patient launch context
externalDocs:
  description: CMS Interoperability Final Rule
  url: https://www.cms.gov/regulations-and-guidance/guidance/interoperability/index