Telematics / Usage‑Based (Motor) — Host‑to‑Host Integration

Insurance • Device/app ingestion, trip events, driver scoring, pricing & claims automation (no SLA section)

Purpose of Host‑to‑Host

Core Data Objects

Example API Endpoints

POST /devices/register
Register device/app; attach to policy/vehicle/driver
POST /trips/ingest
Upload trip summary with GPS trace hash
POST /events/ingest
Upload driving events and sensor metrics
POST /score/driver
Compute driver score & band with explanations
POST /pricing/ubi
Return usage‑based premium deltas & discounts
POST /claims/fnol-from-telematics
Create FNOL from crash signal (with consent)
POST /alerts
Create safety alerts and recommendations
POST /callbacks/status
Async updates to PAS/Claims/CRM

Sample Trip Ingestion

POST /trips/ingest
{
  "deviceId":"OBD-88F21",
  "driverId":"DRV-1021",
  "vehicle":{"plate":"B1234XYZ","vin":"MHKGN58F..."},
  "start":"2025-08-14T07:21:00+07:00",
  "end":"2025-08-14T07:53:00+07:00",
  "distanceKm": 21.3,
  "context":{"night":false,"rain":true,"urban":true},
  "hash":"sha256:..."
}

Sample Driver Score

POST /score/driver
{
  "driverId":"DRV-1021",
  "windowDays": 30,
  "features":{"harshBrakes": 7, "overSpeedMins": 14, "phoneUseMins": 6, "nightKm": 12.4}
}
-- RESPONSE --
{
  "score": 0.78,
  "band": "MEDIUM",
  "reasons": ["Speeding at night","Phone use during trip"],
  "discountPct": 3.5
}

Reference Flows

Onboarding & Consent
  • Customer pairs device/app → /devices/register
  • Consent scopes stored; device health monitored
  • Welcome journey + safe‑driving tips
Streaming Ingestion
  • Trips/events posted to /trips/ingest & /events/ingest
  • Scores updated; alerts pushed to customer app
  • Exposure fed to Rating/PAS for UBI pricing
Crash → Tele‑FNOL
  • Crash detected → severity estimate & last location
  • Consent check → /claims/fnol-from-telematics
  • Tow/assistance dispatched; claim opened
Rewards & Coaching
  • Monthly review → /score/driver results
  • Discounts/vouchers offered for safe behavior
  • Insights shared via notifications & email

Security & Controls

Monitoring & Audit

What You Get