Akute Health Patients API

The Patients API from Akute Health — 3 operation(s) for patients.

Operations 5

POST /patients Create a patient #
GET /patients Search patients #
GET /patients/{patient_id} Get a patient by id #
PUT /patients/{patient_id} Update a patient #
GET /patients/{patient_id}/external_ids Get a patient's external ids #

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/akute-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 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

akute-patients-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Akute Health Customer Appointments Patients API
  description: REST API for the Akute Health automation-first EHR platform. Exposes FHIR-aligned resources - patients, appointments, clinical notes (encounters), tasks, documents, medications and e-prescribing, lab orders, diagnostic reports and observations - plus webhook subscriptions for resource events. Authentication uses an API key passed in the X-API-Key header. Webhook deliveries are signed with HMAC-SHA256 in the x-akute-signature header.
  termsOfService: https://www.akutehealth.com/
  contact:
    name: Akute Health Support
    email: support@akutehealth.com
    url: https://developer.akutehealth.com/
  version: '1.0'
servers:
- url: https://api.akutehealth.com/v1
  description: Production
- url: https://api.staging.akutehealth.com/v1
  description: Staging
security:
- APIKeyHeader: []
tags:
- name: Patients
paths:
  /patients:
    post:
      operationId: createPatient
      tags:
      - Patients
      summary: Create a patient
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PatientCreate'
      responses:
        '201':
          description: Created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Patient'
    get:
      operationId: searchPatients
      tags:
      - Patients
      summary: Search patients
      description: Search patients by demographics, contact details, or external_id. Returns a paginated list.
      parameters:
      - name: external_id
        in: query
        schema:
          type: string
      - name: first_name
        in: query
        schema:
          type: string
      - name: last_name
        in: query
        schema:
          type: string
      - name: middle_name
        in: query
        schema:
          type: string
      - name: date_of_birth
        in: query
        schema:
          type: string
          format: date
      - name: sex
        in: query
        schema:
          type: string
          enum:
          - male
          - female
          - other
          - unknown
      - name: email
        in: query
        schema:
          type: string
          format: email
      - name: primary_phone_number
        in: query
        schema:
          type: string
      - name: status
        in: query
        schema:
          type: string
          enum:
          - active
          - inactive
      - name: limit
        in: query
        schema:
          type: integer
          default: 100
      - name: offset
        in: query
        schema:
          type: integer
          default: 0
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Patient'
  /patients/{patient_id}:
    get:
      operationId: getPatient
      tags:
      - Patients
      summary: Get a patient by id
      parameters:
      - $ref: '#/components/parameters/PatientId'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Patient'
    put:
      operationId: updatePatient
      tags:
      - Patients
      summary: Update a patient
      parameters:
      - $ref: '#/components/parameters/PatientId'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PatientCreate'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Patient'
  /patients/{patient_id}/external_ids:
    get:
      operationId: getPatientExternalIds
      tags:
      - Patients
      summary: Get a patient's external ids
      parameters:
      - $ref: '#/components/parameters/PatientId'
      responses:
        '200':
          description: OK
components:
  parameters:
    PatientId:
      name: patient_id
      in: path
      required: true
      schema:
        type: string
  schemas:
    Patient:
      type: object
      properties:
        id:
          type: string
        external_id:
          type: string
        first_name:
          type: string
        middle_name:
          type: string
        last_name:
          type: string
        date_of_birth:
          type: string
          format: date
        sex:
          type: string
          enum:
          - male
          - female
          - other
          - unknown
        status:
          type: string
          enum:
          - active
          - inactive
        email:
          type: string
          format: email
        primary_phone_number:
          type: string
        primary_phone_type:
          type: string
          enum:
          - mobile
          - home
          - work
        address_line_1:
          type: string
        address_line_2:
          type: string
        address_city:
          type: string
        address_state:
          type: string
        address_zipcode:
          type: string
    PatientCreate:
      type: object
      required:
      - first_name
      - last_name
      - date_of_birth
      - sex
      - status
      properties:
        external_id:
          type: string
        first_name:
          type: string
        middle_name:
          type: string
        last_name:
          type: string
        date_of_birth:
          type: string
          format: date
        sex:
          type: string
          enum:
          - male
          - female
          - other
          - unknown
        status:
          type: string
          enum:
          - active
          - inactive
        email:
          type: string
          format: email
        primary_phone_number:
          type: string
        primary_phone_type:
          type: string
          enum:
          - mobile
          - home
          - work
        address_line_1:
          type: string
        address_line_2:
          type: string
        address_city:
          type: string
        address_state:
          type: string
        address_zipcode:
          type: string
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key
      description: API key created on the Settings -> Developer page in Akute. Required on every request.