AdvancedMD Patient Demographics API

The Patient Demographics API from AdvancedMD — 1 operation(s) for patient demographics.

Operations 1

GET /demographics/patients/{patientid}

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/advancedmd-patient-demographics-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

advancedmd-patient-demographics-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: 1.0.1
  title: AdvancedMD Application Access Patient Demographics API
  description: 'A collection of RESTful APIs that can be used to interact with AdvancedMD data. All APIs return JSON, with the exception of       the Episode Summaries API, which returns an HL7 C-CDA v3 (XML) document.


    Supported Version: AdvancedMD v12.6

    '
servers:
- url: https://ptapi.advancedmd.com/pt-api
tags:
- name: Patient Demographics
paths:
  /demographics/patients/{patientid}:
    get:
      security:
      - API Key: []
        Bearer Token: []
      tags:
      - Patient Demographics
      parameters:
      - name: patientid
        description: The patient's unique identifier ("patientid") returned by the authenticate API.
        in: path
        required: true
        x-example: '32745'
        schema:
          type: string
      responses:
        '200':
          description: Successful API call. Contains the patient's detailed demographic information.
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    id:
                      type: string
                      description: The internal AdvancedMD identifier for the patient
                    name:
                      type: string
                      description: The patient's full name
                    dob:
                      type: string
                      description: The patients date of birth
                    sex:
                      type: string
                      description: The patient's gender (M = male, F = female, U = unknown)
                    language:
                      type: string
                      description: The patient's preferred language
                    ethnicity:
                      type: string
                      description: The patient's ethnicity
                    races:
                      type: string
                      description: The patient's race (or races)
                    address:
                      type: object
                      properties:
                        address1:
                          type: string
                        address2:
                          type: string
                        city:
                          type: string
                        state:
                          type: string
                        zip:
                          type: string
        '401':
          $ref: '#/components/responses/Unauthorized'
        '429':
          $ref: '#/components/responses/Too_many_requests'
components:
  responses:
    Too_many_requests:
      description: 'Too many requests: More details are provided in the response.'
      content:
        application/json:
          schema:
            type: object
            properties:
              title:
                type: string
                example: QuotaViolation
              detail:
                type: string
                example: 'Too many requests: Please wait and try your request again in about a minute.'
    Unauthorized:
      description: 'Unauthorized: More details are provided in the response.'
      content:
        application/json:
          schema:
            type: object
            properties:
              title:
                type: string
                example: Unauthorized
              detail:
                type: string
                example: Invalid API key or bearer token.
  securitySchemes:
    API_Key:
      type: apiKey
      in: header
      name: apikey
    Bearer_Token:
      type: apiKey
      in: header
      name: Authorization