AristaMD Workup Checklists API

The Workup Checklists API from AristaMD — 3 operation(s) for workup checklists.

Operations 3

GET /workup-checklists/specialties Workup checklists specialties #
GET /workup-checklists/specialties/{specialtyCode}/chief-complaints Specialty chief complaints #
GET /workup-checklists/specialties/{specialtyCode}/chief-complaints/{chiefComplaintCode} Specialty / Chief Complaint Search #

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-workup-checklists-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-workup-checklists-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Aristamd Workup Checklists API
  version: 1.0.0
  description: 'Operations tagged Workup Checklists across 2 of this provider''s published API definitions: aristamd-openapi-original.json, aristamd-workup-checklists-api-openapi.yml. 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: Workup Checklists
paths:
  /workup-checklists/specialties:
    get:
      tags:
      - Workup Checklists
      summary: Workup checklists specialties
      description: Retrieves available specialties for the existent workup checklists
      operationId: specialties
      responses:
        '200':
          description: Available specialties of current checklists
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Specialty'
        '400':
          description: Invalid Credentials
        '500':
          description: Internal Server error
  /workup-checklists/specialties/{specialtyCode}/chief-complaints:
    get:
      tags:
      - Workup Checklists
      summary: Specialty chief complaints
      description: Retrieves available specialties for the existent workup checklists
      operationId: chiefComplaints
      parameters:
      - name: specialtyCode
        in: path
        description: Specialty code to find chief complaints
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Available chief complaints of selected specialty in the current checklists
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ChiefComplaint'
        '400':
          description: Invalid Credentials
        '404':
          description: Not found
        '500':
          description: Internal Server error
  /workup-checklists/specialties/{specialtyCode}/chief-complaints/{chiefComplaintCode}:
    get:
      tags:
      - Workup Checklists
      summary: Specialty / Chief Complaint Search
      description: Search checklist by specialty and chief complaint
      operationId: searchBySpecialtyAndChiefComplaint
      parameters:
      - name: specialtyCode
        in: path
        description: Specialty code
        required: true
        schema:
          type: string
      - name: chiefComplaintCode
        in: path
        description: Chief complaint code
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Checklist retrieved from specialty and chief complaint
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ThirdPartyWorkupChecklist'
        '400':
          description: Invalid Credentials or invalid request
        '404':
          description: Specialty or Chief complaint not found
        '204':
          description: No results available
        '500':
          description: Internal Server error
components:
  schemas:
    ChiefComplaint:
      properties:
        id:
          type: integer
        code:
          type: string
        display_name:
          type: string
        specialties:
          type: array
          items:
            $ref: '#/components/schemas/Specialty'
      type: object
      xml:
        name: ChiefComplaint
    Specialty:
      properties:
        id:
          type: integer
        code:
          type: string
        display_name:
          type: string
        parent_specialty_id:
          type: integer
        title:
          type: string
        keywords:
          type: string
        pediatrics_only:
          type: boolean
        nameKeywords:
          type: string
        specialist_form_version:
          type: integer
      type: object
      xml:
        name: Specialty
    ThirdPartyWorkupChecklist:
      properties:
        id:
          type: integer
        specialty:
          type: string
        chief_complaint:
          type: string
        created_by:
          type: string
        assessments:
          type: array
          items:
            properties:
              id:
                type: string
              question:
                type: string
              question_type:
                type: string
              created_at:
                type: string
              updated_at:
                type: string
              choices:
                type: array
                items:
                  type: string
              prompt:
                type: string
              alert:
                type: string
              filter:
                type: string
        diagnostics:
          type: array
          items:
            properties:
              id:
                type: string
              diagnostic_id:
                type: integer
              name:
                type: string
              category:
                type: string
              diagnostic_type:
                type: string
              conditions:
                type: string
              required:
                type: boolean
              alert:
                type: string
              conditional:
                type: boolean
              requires_aoe:
                type: boolean
              created_at:
                type: string
              updated_at:
                type: string
        special_note:
          type: string
      type: object
      xml:
        name: ThirdPartyWorkupChecklist
x-refined-from:
- aristamd-openapi-original.json
- aristamd-workup-checklists-api-openapi.yml