ZeqADAS
Advanced driver assistance — sensor fusion (camera/radar/LiDAR) on Zeqond frames, lane keeping, adaptive cruise control, collision avoidance with R(t) reaction timing.
| Endpoint | POST /api/auto/adas |
| Auth | api-key |
| Rate limit | 30/min |
| Category | automotive |
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
sensorFusion | object | Yes | Fused sensor detections: objects, lanes, signs. |
vehicleState | object | Yes | { speed_ms, heading, acceleration } |
mode | string | No | 'lane-keep', 'acc', 'aeb', 'full'. |
Returns
{ steeringCmd_deg, throttle_pct, brakeCmd_pct, warnings, zeqond }
Example
curl -sS -X POST \
-H "Authorization: Bearer zsm_..." \
-H "Content-Type: application/json" \
-d '{
"sensorFusion": {},
"vehicleState": {},
"mode": "full"
}' \
"https://zeqsdk.com/api/auto/adas"
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-adas.