Developer Preview

Automate your inventory vetting.

Integrate Motorly's battery analysis engine directly into your DMS or marketplace platform.

Analyze Vehicle Endpoint

Submit vehicle details and photos for asynchronous analysis. The system uses computer vision to extract dashboard metrics and combines them with VIN data.

POST https://api.motorly.com/v1/analyze

Response Object

  • battery_health.grade: A letter grade (A+ to F) based on degradation relative to fleet average.
  • badges: Array of marketing badges ("Verified", "Top Tier") to display on your listing.
curl example
curl -X POST https://api.motorly.com/v1/analyze \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "vin": "1N4AZ0CP0DC...",
    "listing_url": "https://dealer.com/car/123",
    "mileage": 45000,
    "images": [
      "https://dealer.com/img/dash.jpg"
    ]
  }'