Device Definitions API
Developer Notes
As of 2024, the source of truth for Device Definitions are now stored in Tableland - a decentralized cloud database. Device Definitions details can now be returned from Identity API. This API now consist of some helper functions for development needs.
Base URLs
https://device-definitions-api.dimo.zone
VIN Decoding
Submit a Decode VIN Request
POST
{baseUrl}
/device-definitions/decode-vin
Submits a decoding request for vehicle identification number, returns the device definition ID corresponding to the VIN.
Use application/json
for raw body parameters.
Request Body
vin
*
String
Vehicle identifier number.
Example:
Headers
Device Definitions Lookup
Get Device Definitions by Search Filters
GET
{baseUrl}
/device-definitions/search
Retrieves a list of device definitions by search filters.
Query Parameters
query
*
String
Query filter (e.g. Lexus gx 2023
)
makeSlug
String
Make of the vehicle (e.g. audi
, lexus
, etc)
modelSlug
String
Model of the vehicle (e.g. Tacoma
, Accord
, etc)
year
Number
Year of the vehicle (e.g. 2024
)
page
Number
Page number (for pagination, defaults to the 1st page)
pageSize
Number
Page size (to specify the items to show in one page)
Last updated