Motion PRCL API

Service Status • Documentation • Integration Notes

Operational Updated:

Overview

Motion PRCL API provides lightweight endpoints used in fleet mobility workflows: event ingestion, compliance signals, and operational telemetry aggregation.

99.95%Target monthly uptime
< 200msP95 latency (typical)
24/7Monitoring & alerting

Key Capabilities

  • Inbound event stream normalization (vehicle, site, toll, inspection)
  • Rule-driven routing (region, facility type, carrier policy)
  • Audit-friendly logs (request id, timestamp, decision trace)
  • Safe integration: no credential capture, no embedded login

Quick Start

# 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.