Particle Health · Capability

Particle Health API — Signal

Particle Health API — Signal real-time alerting. Retrieve network alerts and per-patient Signal alert history for subscribed cohorts.

Particle Health API — Signal is a Naftiko capability published by Particle Health, one of 12 capabilities the APIs.io network indexes for this provider. It bundles 4 operations across the GET method.

The capability includes 4 read-only operations. Lead operation: Get Network Alerts. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Particle Health, Signal, Alerts, and ADT.

Run with Naftiko Particle HealthSignalAlertsADT

What You Can Do

GET
Getnetworkalerts — Get Network Alerts
/v1/alerts/network
GET
Getnetworkalert — Get Network Alert
/v1/alerts/network/{id}
GET
Getpatientsignals — Get Patient Signal History
/v1/patients/{id}/signals
GET
Getpatientsignalscohort — Get Patient Signals Cohort
/v1/patients/signalscohort

MCP Tools

get-network-alerts

Get Network Alerts

read-only idempotent
get-network-alert

Get Network Alert

read-only idempotent
get-patient-signals

Get Patient Signal History

read-only idempotent
get-patient-signals-cohort

Get Patient Signals Cohort

read-only idempotent

Capability Spec

particle-health-signal.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Particle Health API — Signal
  description: 'Particle Health API — Signal real-time alerting. Retrieve network alerts and per-patient
    Signal alert history for subscribed cohorts.'
  tags:
  - Particle Health
  - Signal
  - Alerts
  - ADT
  created: '2026-05-24'
  modified: '2026-05-24'
binds:
- namespace: env
  keys:
    PARTICLE_HEALTH_API_TOKEN: PARTICLE_HEALTH_API_TOKEN
capability:
  consumes:
  - type: http
    namespace: signal
    baseUri: https://api.particlehealth.com
    description: Particle Health Signal business capability.
    resources:
    - name: NetworkAlerts
      path: /api/v1/alerts/network
      operations:
      - name: getnetworkalerts
        method: GET
        description: Get Network Alerts
        outputRawFormat: json
        outputParameters: [{ name: result, type: object, value: $. }]
    - name: NetworkAlert
      path: /api/v1/alerts/network/{id}
      operations:
      - name: getnetworkalert
        method: GET
        description: Get Network Alert
        outputRawFormat: json
        outputParameters: [{ name: result, type: object, value: $. }]
    - name: PatientSignals
      path: /api/v1/patients/{id}/signals
      operations:
      - name: getpatientsignals
        method: GET
        description: Get Patient Signal History
        outputRawFormat: json
        outputParameters: [{ name: result, type: object, value: $. }]
    - name: PatientSignalsCohort
      path: /api/v1/patients/signalscohort
      operations:
      - name: getpatientsignalscohort
        method: GET
        description: Get Patient Signals Cohort
        outputRawFormat: json
        outputParameters: [{ name: result, type: object, value: $. }]
    authentication:
      type: bearer
      token: '{{env.PARTICLE_HEALTH_API_TOKEN}}'
  exposes:
  - type: rest
    namespace: signal-rest
    port: 8080
    description: REST adapter for Particle Health Signal.
    resources:
    - path: /v1/alerts/network
      name: network-alerts
      operations:
      - method: GET
        name: getnetworkalerts
        description: Get Network Alerts
        call: signal.getnetworkalerts
        outputParameters: [{ type: object, mapping: $. }]
    - path: /v1/alerts/network/{id}
      name: network-alert
      operations:
      - method: GET
        name: getnetworkalert
        description: Get Network Alert
        call: signal.getnetworkalert
        outputParameters: [{ type: object, mapping: $. }]
    - path: /v1/patients/{id}/signals
      name: patient-signals
      operations:
      - method: GET
        name: getpatientsignals
        description: Get Patient Signal History
        call: signal.getpatientsignals
        outputParameters: [{ type: object, mapping: $. }]
    - path: /v1/patients/signalscohort
      name: signals-cohort
      operations:
      - method: GET
        name: getpatientsignalscohort
        description: Get Patient Signals Cohort
        call: signal.getpatientsignalscohort
        outputParameters: [{ type: object, mapping: $. }]
  - type: mcp
    namespace: signal-mcp
    port: 9090
    transport: http
    description: MCP adapter for Particle Health Signal.
    tools:
    - name: get-network-alerts
      description: Get Network Alerts
      hints: { readOnly: true, destructive: false, idempotent: true }
      call: signal.getnetworkalerts
      outputParameters: [{ type: object, mapping: $. }]
    - name: get-network-alert
      description: Get Network Alert
      hints: { readOnly: true, destructive: false, idempotent: true }
      call: signal.getnetworkalert
      outputParameters: [{ type: object, mapping: $. }]
    - name: get-patient-signals
      description: Get Patient Signal History
      hints: { readOnly: true, destructive: false, idempotent: true }
      call: signal.getpatientsignals
      outputParameters: [{ type: object, mapping: $. }]
    - name: get-patient-signals-cohort
      description: Get Patient Signals Cohort
      hints: { readOnly: true, destructive: false, idempotent: true }
      call: signal.getpatientsignalscohort
      outputParameters: [{ type: object, mapping: $. }]