Particle Health Authentication API

OAuth 2 client-credentials JWT issuance.

Operations 1

GET /auth Generate a JSON Web Token #

Documentation

Specifications

Other Resources

🔗
Sandbox
https://docs.particlehealth.com/docs/test-patient-sandbox
🔗
Postman
https://www.postman.com/particlehealth/particle-health-api
🔗
LLMs
https://docs.particlehealth.com/llms.txt
🔗
Webhooks
https://docs.particlehealth.com/docs/webhook-event-notifications
🔗
SupportedFHIRResources
https://docs.particlehealth.com/docs/supported-fhir-resources
🔗
Networks
https://docs.particlehealth.com/docs/networks
🔗
DataNormalization
https://docs.particlehealth.com/docs/data-normalization
🔗
DataDeduplication
https://docs.particlehealth.com/docs/data-deduplication
🔗
DataProvenance
https://docs.particlehealth.com/docs/data-provenance
🔗
PurposesOfUse
https://docs.particlehealth.com/docs/purposes-of-use
🔗
DelegationOfAuthority
https://docs.particlehealth.com/docs/delegation-of-authority
🔗
Spectral
https://raw.githubusercontent.com/api-evangelist/particle-health/refs/heads/main/spectral/particle-health-spectral.yml
🔗
Overlay
https://raw.githubusercontent.com/api-evangelist/particle-health/refs/heads/main/overlays/particle-health-authentication-api-overlay.yaml
🔗
APIsJSON
https://raw.githubusercontent.com/api-evangelist/particle-health/refs/heads/main/apis.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/particle-health/refs/heads/main/arazzo/particle-health-adt-subscription-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/particle-health/refs/heads/main/arazzo/particle-health-clinical-document-exchange-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/particle-health/refs/heads/main/arazzo/particle-health-fhir-r4-resource-query-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/particle-health/refs/heads/main/arazzo/particle-health-network-provider-discovery-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/particle-health/refs/heads/main/arazzo/particle-health-patient-record-retrieval-workflow.yml

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/particle-health-authentication-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

particle-health-authentication-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Particle Health Authentication API
  description: Particle Health is a healthcare data interoperability API that aggregates patient medical records from US health information exchanges (Carequality, CommonWell, eHealth Exchange), TEFCA / QHIN partners, state HIEs, and Surescripts. The API surfaces patient registration, asynchronous query orchestration, batch processing, document handling, network participant directory search, patient provider mapping, and real-time Signal alerting. Clinical data is returned in FHIR R4 Bundles, C-CDA documents, Flat datasets, or Deltas (incremental changes). Authentication uses OAuth 2 client-credentials with JWT bearer tokens scoped to a project.
  version: v1
  contact:
    name: Particle Health Support
    email: support@particlehealth.com
    url: https://particlehealth.com/contact
  license:
    name: Particle Health Terms of Service
    url: https://particlehealth.com/
servers:
- url: https://api.particlehealth.com
  description: Particle Health Production
security:
- bearerAuth: []
tags:
- name: Authentication
  description: OAuth 2 client-credentials JWT issuance.
paths:
  /auth:
    get:
      operationId: getAuthToken
      summary: Generate a JSON Web Token
      description: Generate a JSON Web Token (JWT) via the OAuth 2 client-credentials grant. The returned token is valid for one hour and must be sent as a Bearer token on subsequent calls.
      tags:
      - Authentication
      security: []
      parameters:
      - name: client_id
        in: header
        required: true
        schema:
          type: string
      - name: client_secret
        in: header
        required: true
        schema:
          type: string
      responses:
        '200':
          description: JWT access token issued
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: OAuth 2 client-credentials JWT issued by `/auth`. Token expires after one hour.
externalDocs:
  description: Particle Health API Documentation
  url: https://docs.particlehealth.com/