Service Status • Documentation • Integration Notes
Motion PRCL API provides lightweight endpoints used in fleet mobility workflows: event ingestion, compliance signals, and operational telemetry aggregation.
# Health check
curl -s https://motion-prclapi-svc-npr.prepass.com/health
# Status (public)
curl -s https://motion-prclapi-svc-npr.prepass.com/status
# Example event submit (token-based, server-to-server)
curl -X POST https://motion-prclapi-svc-npr.prepass.com/v1/events \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"event_type":"site_approach",
"vehicle_id":"VH-10291",
"site_id":"WS-0092",
"timestamp":"2026-02-14T10:00:00Z",
"meta":{"lane":"NB","speed_mph":58}
}'
Replace endpoints/tokens with your real integration values. Keep tokens server-side only.