Devoted Health Patient API

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

Operations 2

GET /Patient
GET /Patient/{id}

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 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

devoted-health-patient-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Devoted Health Patient API
  version: unspecified
  description: 'Operations tagged Patient across 2 of this provider''s published API definitions: devoted-health-patient-access-openapi-original.json, devoted-health-patient-access-openapi.json. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.prod.devoted.com/fhir/
tags:
- name: Patient
paths:
  /Patient:
    get:
      tags:
      - Patient
      parameters:
      - name: _id
        in: query
        description: A patient identifier. Either the '_id' parameter, or 'identifier' must be provided.
        schema:
          type: string
      - name: identifier
        in: query
        description: A patient identifier. Either the '_id' parameter, or 'identifier' must be provided.
        schema:
          type: string
      - name: _format
        in: query
        x-consoleDefault: application/json
        schema:
          type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Patient'
    servers:
    - url: https://api.prod.devoted.com/fhir/
  /Patient/{id}:
    parameters:
    - in: path
      required: true
      name: id
      schema:
        type: string
    get:
      tags:
      - Patient
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Patient'
    servers:
    - url: https://api.prod.devoted.com/fhir/
components:
  schemas:
    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
x-refined-from:
- devoted-health-patient-access-openapi-original.json
- devoted-health-patient-access-openapi.json