AristaMD Specialties API

The Specialties API from AristaMD — 3 operation(s) for specialties.

Operations 3

PUT /specialties/{specialtyId} Updates a specialty instance #
POST /specialties Creates a new specialty instance #
GET /specialties/withAvailablePanelists/{filter} Retrieves a list of specialties with available panelists. #

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-specialties-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-specialties-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Aristamd Specialties API
  version: 1.0.0
  description: 'Operations tagged Specialties across 2 of this provider''s published API definitions: aristamd-openapi-original.json, aristamd-specialties-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: Specialties
paths:
  /specialties/{specialtyId}:
    put:
      tags:
      - Specialties
      summary: Updates a specialty instance
      description: Updates a main specialty or sub specialty based on the provided input
      operationId: update
      parameters:
      - name: Specialty Id
        in: path
        description: Id of the specialty to update
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '201':
          description: Updated Specialty
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Specialty'
        '400':
          description: Invalid credentials
        '500':
          description: Internal Error
        '402':
          description: Unprocessable entity
        '403':
          description: Unauthorized
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Specialty'
        description: Specialty body
        required: true
  /specialties:
    post:
      tags:
      - Specialties
      summary: Creates a new specialty instance
      description: Creates a main specialty or sub specialty based on the provided input
      operationId: store
      responses:
        '201':
          description: Created Specialty
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Specialty'
        '400':
          description: Invalid credentials
        '500':
          description: Internal Error
        '402':
          description: Unprocessable entity
        '403':
          description: Unauthorized
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Specialty'
        description: Specialty body
        required: true
  /specialties/withAvailablePanelists/{filter}:
    get:
      tags:
      - Specialties
      summary: Retrieves a list of specialties with available panelists.
      description: Retrieves a list of specialties with available panelists
      operationId: index
      parameters:
      - name: filter
        in: path
        description: 'Filter that we should apply to the specialties list. You can include into the path the filter options: pediatrics or non-pediatrics.'
        required: true
        schema:
          type: string
          default: 'null'
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                type: array
                items:
                  properties:
                    id:
                      type: integer
                    code:
                      type: string
                    display_name:
                      type: string
                    parent_specialty_id:
                      type: string
                    title:
                      type: string
                    keywords:
                      type: string
                    pediatrics_only:
                      type: boolean
                    nameKeywords:
                      type: string
                    specialist_form_version:
                      type: integer
                    subspecialties:
                      type: array
                      items:
                        properties:
                          id:
                            type: integer
                          code:
                            type: string
                          display_name:
                            type: string
                          parent_specialty_id:
                            type: string
                          title:
                            type: string
                          keywords:
                            type: string
                          pediatrics_only:
                            type: boolean
                          nameKeywords:
                            type: string
                          specialist_form_version:
                            type: integer
                        type: object
                  type: object
        '400':
          description: Invalid Credentials
          content:
            application/json:
              schema: {}
components:
  schemas:
    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
x-refined-from:
- aristamd-openapi-original.json
- aristamd-specialties-api-openapi.yml