Autoderm – AI Dermatology API Device API

The device API from Autoderm – AI Dermatology API — 1 operation(s) for device.

Operations 1

GET /v1/label Get Label #

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/autoderm-ai-dermatology-api-device-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

autoderm-ai-dermatology-api-device-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Autoderm Device API
  version: 2.3.6
servers:
- url: https://api.autoderm.ai
  description: Autoderm API Server (prod)
tags:
- name: device
paths:
  /v1/label:
    get:
      tags:
      - device
      summary: Get Label
      description: Return the medical device label.
      operationId: get_label_v1_label_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MedicalDeviceLabel'
components:
  schemas:
    MedicalDeviceLabel:
      properties:
        device_name:
          type: string
          title: Device Name
        device_type:
          type: string
          title: Device Type
        version:
          type: string
          title: Version
        manufacturer:
          type: string
          title: Manufacturer
        manufacture_date:
          type: string
          title: Manufacture Date
        ce_mark:
          type: string
          title: Ce Mark
        unique_device_identifier:
          type: string
          title: Unique Device Identifier
        eifu:
          type: string
          title: Eifu
        warning:
          anyOf:
          - type: string
          - type: 'null'
          title: Warning
        support:
          anyOf:
          - type: string
          - type: 'null'
          title: Support
        uk_responsible_person:
          anyOf:
          - type: string
          - type: 'null'
          title: Uk Responsible Person
      type: object
      required:
      - device_name
      - device_type
      - version
      - manufacturer
      - manufacture_date
      - ce_mark
      - unique_device_identifier
      - eifu
      title: MedicalDeviceLabel
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer