athenahealth Patients API

The Patients API from athenahealth — 2 operation(s) for patients.

Operations 4

GET /patients Search Patients #
POST /patients Create Patient #
GET /patients/{patientid} Get Patient #
PUT /patients/{patientid} Update Patient #

Documentation

Specifications

Schemas & Data

Other Resources

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/athena-health-patients-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 email required.

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

OpenAPI Specification

athenahealth-patients-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: athenahealth athenaOne REST Patients API
  description: 'The athenaOne proprietary REST API exposes the full provider, patient,

    scheduling, clinical, and biller workflow surface of the athenahealth

    cloud-based EHR and practice management platform. All resources are

    scoped to a practice via the practiceid path parameter.

    '
  version: 1.0.0
  contact:
    name: athenahealth Developer Support
    url: https://docs.athenahealth.com/api/support
  license:
    name: athenahealth API Terms
    url: https://www.athenahealth.com/legal/terms
servers:
- url: https://api.platform.athenahealth.com/v1/{practiceid}
  description: Production athenaOne API
  variables:
    practiceid:
      default: '195900'
      description: athenaOne practice identifier
- url: https://api.preview.platform.athenahealth.com/v1/{practiceid}
  description: Preview (sandbox) athenaOne API
  variables:
    practiceid:
      default: '195900'
      description: athenaOne preview practice identifier
security:
- oauth2: []
tags:
- name: Patients
paths:
  /patients:
    get:
      summary: Search Patients
      operationId: searchPatients
      tags:
      - Patients
      parameters:
      - name: firstname
        in: query
        schema:
          type: string
      - name: lastname
        in: query
        schema:
          type: string
      - name: dob
        in: query
        schema:
          type: string
          format: date
      - name: departmentid
        in: query
        schema:
          type: integer
      responses:
        '200':
          description: List of matching patients
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PatientList'
    post:
      summary: Create Patient
      operationId: createPatient
      tags:
      - Patients
      requestBody:
        required: true
        content:
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/PatientCreate'
      responses:
        '200':
          description: Created patient
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Patient'
  /patients/{patientid}:
    get:
      summary: Get Patient
      operationId: getPatient
      tags:
      - Patients
      parameters:
      - name: patientid
        in: path
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: Patient record
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Patient'
    put:
      summary: Update Patient
      operationId: updatePatient
      tags:
      - Patients
      parameters:
      - name: patientid
        in: path
        required: true
        schema:
          type: integer
      requestBody:
        required: true
        content:
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/PatientUpdate'
      responses:
        '200':
          description: Update result
components:
  schemas:
    PatientUpdate:
      type: object
      properties:
        firstname:
          type: string
        lastname:
          type: string
        mobilephone:
          type: string
        email:
          type: string
          format: email
    PatientList:
      type: array
      items:
        $ref: '#/components/schemas/Patient'
    PatientCreate:
      type: object
      required:
      - firstname
      - lastname
      - dob
      - departmentid
      properties:
        firstname:
          type: string
        lastname:
          type: string
        dob:
          type: string
          format: date
        departmentid:
          type: integer
        sex:
          type: string
    Patient:
      type: object
      properties:
        patientid:
          type: string
        firstname:
          type: string
        lastname:
          type: string
        dob:
          type: string
          format: date
        sex:
          type: string
          enum:
          - M
          - F
          - U
        homephone:
          type: string
        mobilephone:
          type: string
        email:
          type: string
          format: email
        address1:
          type: string
        city:
          type: string
        state:
          type: string
        zip:
          type: string
        departmentid:
          type: integer
  securitySchemes:
    oauth2:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: https://api.platform.athenahealth.com/oauth2/v1/token
          scopes:
            athena/service/Athenanet.MDP.*: athenahealth MDP scope
        authorizationCode:
          authorizationUrl: https://api.platform.athenahealth.com/oauth2/v1/authorize
          tokenUrl: https://api.platform.athenahealth.com/oauth2/v1/token
          scopes:
            athena/service/Athenanet.MDP.*: athenahealth MDP scope