v1

latestOpenAPI 3.1.02026-08-06230114.0 KB
Vehicle

Search Vehicles

get/v1/vehicles

Query parameters

vinstring

Vehicle Identification Number for vehicle

Example:1HGBIQOJXMN109186

Vehicle Identification Number for vehicle

imeistring

Unique bouncie device identifier

Example:123456789012345

Unique bouncie device identifier

limitnumber

Number of search results to limit (for paging)

Example:10

Number of search results to limit (for paging)

skipnumber

Number of search results to skip (for paging)

Number of search results to skip (for paging)

Headers

Authorizationstring

User access token

User access token

Content-Type'application/json'

Response

Returns an array of vehicles matching the given criteria

nickNamestring required

Nickname of the vehicle

standardEnginestring required

Vehicle engine type

vinstring required

Vehicle Identification Number for vehicle

imeistring required

Unique bouncie device identifier

Example response

[
  {
    "model": {
      "make": "Honda",
      "name": "Accord",
      "year": 2022
    },
    "nickName": "My Honda",
    "standardEngine": "1.5L 4-Cylinder Turbo",
    "vin": "1HGBIQOJXMN109186",
    "imei": "123456789012345",
    "stats": {
      "localTimeZone": "America/Chicago",
      "odometer": 45678.9,
      "lastUpdated": "2026-01-01T08:30:00.000Z",
      "location": {
        "lat": 32.7767432,
        "lon": -96.7970123,
        "heading": 135,
        "address": "123 Main Street, Dallas, TX 75201"
      },
      "fuelLevel": 75.5,
      "isRunning": true,
      "speed": 45,
      "mil": {
        "lastUpdated": "2026-01-01T08:30:00.000Z",
        "qualifiedDtcList": [
          {
            "code": "P0420",
            "name": [
              "Catalyst System Efficiency Below Threshold"
            ]
          }
        ],
        "battery": {
          "status": "normal",
          "lastUpdated": "2026-01-01T08:30:00.000Z"
        }
      }
    }
  }
]