AristaMD Intergy/Patients API

The Intergy/Patients API from AristaMD — 1 operation(s) for intergy/patients.

Operations 1

GET /intergy/patients/{id} Retrieves Patient information from Intergy API #

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/aristamd-intergy-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

aristamd-intergy-patients-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Aristamd Intergy/Patients API
  version: 1.0.0
  description: 'Operations tagged Intergy/Patients across 2 of this provider''s published API definitions: aristamd-intergy-patients-api-openapi.yml, aristamd-openapi-original.json. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.aristamd.com
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: Intergy/Patients
paths:
  /intergy/patients/{id}:
    get:
      tags:
      - Intergy/Patients
      summary: Retrieves Patient information from Intergy API
      description: Retrieves Patient Record, if the patient was already included then we are goin to update patient's information,if not then we are going to return a new patient record.
      operationId: index
      parameters:
      - name: id
        in: path
        description: Patient's Id
        required: true
        schema:
          type: integer
      - name: practice_id
        in: query
        description: Id of the practice we want to search
        required: false
        schema:
          type: integer
          default: null
      responses:
        '200':
          description: Patient Record
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Patient'
        '400':
          description: Invalid Credentials
          content:
            application/json:
              schema: {}
        '403':
          description: Unauthorized
          content:
            application/json:
              schema: {}
    servers:
    - url: https://api.aristamd.com
      description: Base URL declared by the provider in apis.yml (roadmap#122).
components:
  schemas:
    Patient:
      properties:
        id:
          type: integer
        organization_id:
          type: integer
        coverage_id:
          type: integer
        system_of_record:
          type: string
        reference_id:
          type: string
        first_name:
          type: string
        last_name:
          type: string
        date_of_birth:
          type: string
        gender:
          type: string
        created_at:
          type: string
        updated_at:
          type: string
        version:
          type: string
        AB109:
          type: boolean
        chronic_conditions:
          type: array
          items:
            type: string
        estimated_release_date:
          type: string
        ccd_file:
          properties:
            id:
              type: string
          type: object
        booking_history:
          type: string
        booking_date:
          properties:
            date:
              type: string
            timezone_type:
              type: integer
            timezone:
              type: string
          type: object
      type: object
      xml:
        name: Patient
x-refined-from:
- aristamd-intergy-patients-api-openapi.yml
- aristamd-openapi-original.json