xCures Summary API

The AI-generated summary of a patient’s overall records and condition(s).

Operations 1

GET /api/v1/patient-registry/summary/subject/{subjectId} Subject Summary #

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/xcures-summary-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

xcures-summary-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: xCures Summary API
  description: '# Authentication

    Our API requires a Bearer Token in the `Authorization` header for auth.'
  version: V1
  x-logo:
    url: https://prod-xc-public-marketing.s3.us-west-2.amazonaws.com/xCures-emails-logo.png
servers:
- url: https://partner.xcures.com
tags:
- name: Summary
  description: The AI-generated summary of a patient’s overall records and condition(s).
paths:
  /api/v1/patient-registry/summary/subject/{subjectId}:
    get:
      operationId: PublicSummaryController_subjectSummary
      summary: Subject Summary
      description: Fetches the summary for a given subject. Throws a Forbidden error if the summary feature is disabled for the project.
      parameters:
      - name: ProjectId
        in: header
        required: true
        schema:
          type: string
          format: uuid
          example: e6b01018-a333-4732-917e-fe38e91b0fdf
      - name: subjectId
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SubjectSummaryDto'
        '400':
          description: ''
        '401':
          description: ''
        '403':
          description: 'Forbidden: The summary feature is not enabled for the project.'
        '429':
          description: ''
      tags:
      - Summary
      security:
      - bearer: []
components:
  schemas:
    SubjectSummaryDto:
      type: object
      properties:
        overview:
          type: string
          description: An overview or summary of the subject.
          example: This is a summary of the subject's details.
        referencedDocuments:
          description: A list of documents referenced in the subject summary.
          example:
          - documentId: doc12345
            referencedStrings:
            - string1
            - string2
          - documentId: doc67890
            referencedStrings:
            - stringA
            - stringB
          type: array
          items:
            $ref: '#/components/schemas/ReferencedDocumentDto'
      required:
      - overview
      - referencedDocuments
    ReferencedDocumentDto:
      type: object
      properties:
        documentId:
          type: string
          description: The unique identifier of the document.
          example: doc12345
        referencedStrings:
          description: A list of strings referenced in the document.
          example:
          - string1
          - string2
          - string3
          type: array
          items:
            type: string
      required:
      - documentId
      - referencedStrings
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http