HoneyRuns Connect

The Plaid for Telematics - Universal API for all telematics providers

What is HoneyRuns Connect?

HoneyRuns Connect is the raw developer infrastructure product - a standardized API that provides unified access to 50+ telematics providers through a single integration.

Think of it as Plaid for telematics: instead of building custom integrations for every telematics provider, connect once to HoneyRuns and access them all.

Key Features

Single Integration, All Providers

  • One API to access DIMO, Samsara, Geotab, and 50+ more providers
  • No need to learn each provider's unique API
  • Standardized data format across all sources

Universal Data Model

{
  "vehicle_id": "uuid",
  "provider": "dimo|samsara|geotab|...",
  "telemetry": {
    "odometer": { "value": 45230, "unit": "miles" },
    "fuel_level": { "value": 68.5, "unit": "percent" },
    "location": { "lat": 37.7749, "lng": -122.4194 }
  }
}

Build Your Own Products

Use Connect as infrastructure to build:

  • Custom fleet management dashboards
  • Vehicle verification tools
  • Maintenance prediction systems
  • Insurance telematics platforms
  • And anything else you can imagine

Pricing Model

Free Tier

  • 1,000 API calls/month
  • Access to all providers
  • Perfect for development and testing

Usage-Based

  • $0.001 per API call (after free tier)
  • No monthly minimums
  • Scale as you grow

Enterprise

  • Custom pricing for high volume
  • Dedicated support
  • SLA guarantees
  • Custom data models

Quick Start

1. Get API Key

Sign up at connect.honeyruns.com to get your API key.

2. Make Your First Request

curl -X GET https://api.honeyruns.com/v1/vehicles \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "success": true,
  "data": [
    {
      "id": "vehicle_123",
      "provider": "dimo",
      "make": "Tesla",
      "model": "Model 3",
      "year": 2022
    }
  ]
}

3. Get Vehicle Telemetry

curl -X GET https://api.honeyruns.com/v1/vehicles/{vehicle_id}/telemetry \
  -H "Authorization: Bearer YOUR_API_KEY"

Use Cases

Fleet Management

Build custom dashboards showing real-time vehicle locations, fuel levels, and maintenance alerts across all your telematics providers.

Vehicle Verification

Verify vehicle mileage and condition for lending, rental, or sales applications without worrying about which provider the vehicle uses.

Insurance Telematics

Access driving behavior data across multiple telematics platforms to calculate risk and premiums.

Marketplace Integration

Power used car marketplaces with real-time vehicle data and history, regardless of the telematics provider.

Next Steps


Ready to build? Get your API key →

On this page