ZeqTriage
Mass casualty triage using START/JumpSTART with HulyaPulse scoring. Automated color classification (black/red/yellow/green) with Zeqond timestamps per assessment.
| Endpoint | POST /api/emergency/triage |
| Auth | api-key |
| Rate limit | 30/min |
| Category | emergency |
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
patients | array | Yes | [{ respiration, pulse, mentalStatus, canWalk }] |
protocol | string | No | 'START', 'JumpSTART', 'SALT', 'SMART'. |
Returns
{ triageResults: [{ patientId, color, priority, zeqond }], summary }
Example
curl -sS -X POST \
-H "Authorization: Bearer zsm_..." \
-H "Content-Type: application/json" \
-d '{
"patients": [],
"protocol": "START"
}' \
"https://zeqsdk.com/api/emergency/triage"
This protocol is a named building block — one of the operations you
compose inside a state contract. Call it directly with
the request above, or invoke it from a contract that fires on your machine's
clock. Browse the whole library at GET /api/protocols; fetch this one at
GET /api/protocols/zeq-triage.