VivaLNK Vital Signs API

Biometric measurements captured from wearables.

Operations 2

GET /v1/subjects/{subjectId}/measurements Retrieve subject measurements #
POST /v1/subjects/{subjectId}/exports Request a bulk data-file export #

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/vivalink-vital-signs-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

vivalink-vital-signs-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: VivaLNK Biometrics Data Platform API (Modeled) Vital Signs…
  description: A modeled OpenAPI description of the VivaLNK (Vivalink) Biometrics Data Platform cloud API for remote patient monitoring.
  version: 1.0-modeled
  contact:
    name: VivaLNK (Vivalink)
    url: https://www.vivalink.com
  x-status: modeled
  x-endpoints-confirmed: false
  x-source-notes: 'Confirmed via VivaLNK marketing/technical pages and the AWS Partner Network blog: REST over HTTPS, Amazon API Gateway, Amazon Kinesis Data Streams for near-real-time access, M2M cloud APIs, webhook support, FHIR support, and bulk data-file downloads. No public WebSocket API is documented.'
servers:
- url: https://api.vivalink.com
  description: Modeled base URL (partner-gated; actual host provided under the Developer Program)
security:
- bearerAuth: []
tags:
- name: Vital Signs
  description: Biometric measurements captured from wearables.
paths:
  /v1/subjects/{subjectId}/measurements:
    parameters:
    - name: subjectId
      in: path
      required: true
      schema:
        type: string
    get:
      operationId: listMeasurements
      tags:
      - Vital Signs
      summary: Retrieve subject measurements
      description: Returns time-ranged biometric measurements for a subject - ECG-derived heart rate, HRV, RR interval, respiratory rate, temperature, SpO2, blood pressure, and accelerometer/activity data (modeled). Near-real-time results are served over REST (backed by Amazon Kinesis), not a public streaming socket.
      parameters:
      - name: metric
        in: query
        schema:
          type: string
          enum:
          - heart_rate
          - hrv
          - rr_interval
          - respiratory_rate
          - temperature
          - spo2
          - blood_pressure
          - activity
          - ecg_waveform
      - name: start
        in: query
        schema:
          type: string
          format: date-time
      - name: end
        in: query
        schema:
          type: string
          format: date-time
      - name: interval
        in: query
        description: Aggregation interval (raw, 1m, 5m, 1h). Omit for raw samples.
        schema:
          type: string
      responses:
        '200':
          description: A time series of measurements.
          content:
            application/json:
              schema:
                type: object
                properties:
                  subjectId:
                    type: string
                  metric:
                    type: string
                  unit:
                    type: string
                  samples:
                    type: array
                    items:
                      $ref: '#/components/schemas/Measurement'
        '401':
          $ref: '#/components/responses/Unauthorized'
  /v1/subjects/{subjectId}/exports:
    parameters:
    - name: subjectId
      in: path
      required: true
      schema:
        type: string
    post:
      operationId: createExport
      tags:
      - Vital Signs
      summary: Request a bulk data-file export
      description: Requests a bulk export (for example CSV/EDF) of a subject's raw biometric data over a time range for retrospective analysis (modeled).
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                start:
                  type: string
                  format: date-time
                end:
                  type: string
                  format: date-time
                format:
                  type: string
                  enum:
                  - csv
                  - edf
                  - json
      responses:
        '202':
          description: Export accepted; poll or await a webhook for completion.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Export'
components:
  schemas:
    Measurement:
      type: object
      properties:
        timestamp:
          type: string
          format: date-time
        value:
          type: number
        deviceId:
          type: string
    Error:
      type: object
      properties:
        code:
          type: string
        message:
          type: string
    Export:
      type: object
      properties:
        id:
          type: string
        status:
          type: string
          enum:
          - pending
          - processing
          - complete
          - failed
        downloadUrl:
          type:
          - string
          - 'null'
  responses:
    Unauthorized:
      description: Missing or invalid credentials.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Modeled as an OAuth2/bearer access token issued to Developer Program partners for machine-to-machine access. Confirm the exact scheme (API key vs. OAuth2 client credentials) against VivaLNK's licensed docs.