Devoted Health Patient API

The Patient API from Devoted Health — 2 operation(s) for patient.

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/devoted-health-patient-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

devoted-health-patient-api-openapi.yml Raw ↑
swagger: '2.0'
info:
  description: "Fast Healthcare Interoperability Resources (FHIR, pronounced \"Fire\") defines a set of \"Resources\" that represent granular clinical concepts. The resources can be managed in isolation, or aggregated into complex documents. Technically, FHIR is designed for the web; the resources are based on simple XML or JSON structures, with an http-based RESTful protocol where each resource has predictable URL. Where possible, open internet standards are used for data representation. \n"
  title: Untitled CodeSystem Patient API
  version: unspecified
host: api.prod.devoted.com
basePath: /fhir/
schemes:
- https
tags:
- name: Patient
paths:
  /Patient:
    get:
      tags:
      - Patient
      parameters:
      - name: _id
        type: string
        in: query
        description: A patient identifier. Either the '_id' parameter, or 'identifier' must be provided.
      - name: identifier
        type: string
        in: query
        description: A patient identifier. Either the '_id' parameter, or 'identifier' must be provided.
      - name: _format
        in: query
        type: string
        x-consoleDefault: application/json
      responses:
        '200':
          description: Success
          schema:
            type: array
            items:
              $ref: '#/definitions/Patient'
  /Patient/{id}:
    parameters:
    - in: path
      required: true
      name: id
      type: string
    get:
      tags:
      - Patient
      parameters: []
      responses:
        '200':
          description: Success
          schema:
            $ref: '#/definitions/Patient'
definitions:
  Patient:
    description: ''
    type: object
    properties:
      resourceType:
        type: string
        minLength: 1
      id:
        type: string
        minLength: 1
      text:
        type: object
        properties:
          status:
            type: string
            minLength: 1
          div:
            type: string
            minLength: 1
        required:
        - status
        - div
      identifier:
        type: array
        uniqueItems: true
        minItems: 1
        items:
          required:
          - use
          - system
          - value
          properties:
            use:
              type: string
              minLength: 1
            type:
              type: object
              properties:
                coding:
                  type: array
                  uniqueItems: true
                  minItems: 1
                  items:
                    required:
                    - system
                    - code
                    properties:
                      system:
                        type: string
                        minLength: 1
                      code:
                        type: string
                        minLength: 1
              required:
              - coding
            system:
              type: string
              minLength: 1
            value:
              type: string
              minLength: 1
      active:
        type: boolean
      name:
        type: array
        uniqueItems: true
        minItems: 1
        items:
          required:
          - use
          properties:
            use:
              type: string
              minLength: 1
            family:
              type: array
              items:
                properties: {}
            given:
              type: array
              items:
                properties: {}
      gender:
        type: string
        minLength: 1
      photo:
        type: array
        uniqueItems: true
        minItems: 1
        items:
          required:
          - contentType
          - data
          properties:
            contentType:
              type: string
              minLength: 1
            data:
              type: string
              minLength: 1
      contact:
        type: array
        uniqueItems: true
        minItems: 1
        items:
          properties:
            relationship:
              type: array
              uniqueItems: true
              minItems: 1
              items:
                properties:
                  coding:
                    type: array
                    uniqueItems: true
                    minItems: 1
                    items:
                      required:
                      - system
                      - code
                      properties:
                        system:
                          type: string
                          minLength: 1
                        code:
                          type: string
                          minLength: 1
            organization:
              type: object
              properties:
                reference:
                  type: string
                  minLength: 1
                display:
                  type: string
                  minLength: 1
              required:
              - reference
              - display
      managingOrganization:
        type: object
        properties:
          reference:
            type: string
            minLength: 1
          display:
            type: string
            minLength: 1
        required:
        - reference
        - display
      link:
        type: array
        uniqueItems: true
        minItems: 1
        items:
          required:
          - type
          properties:
            other:
              type: object
              properties:
                reference:
                  type: string
                  minLength: 1
              required:
              - reference
            type:
              type: string
              minLength: 1
    required:
    - resourceType
    - id
    - text
    - identifier
    - active
    - name
    - gender
    - photo
    - contact
    - managingOrganization
    - link