Auto.dev

Autosuggest

Provides intelligent type-ahead suggestions for vehicle makes and models based on search input

GET
/autosuggest/{term}

Path Parameters

termstring

Response Body

curl -X GET "https://www.auto.dev/api/autosuggest/string"
{
  "recordTypes": {
    "makemodel": [
      {
        "vehicle": {
          "publicationStates": {
            "used": [
              "string"
            ],
            "preProd": [
              "string"
            ],
            "newUsed": [
              "string"
            ],
            "new": [
              "string"
            ]
          }
        },
        "model": "string",
        "make": "string",
        "inventory": {
          "usedYears": [
            "string"
          ],
          "newYears": [
            "string"
          ]
        }
      }
    ],
    "fuzzyMakemodel": [
      {
        "vehicle": {
          "publicationStates": {
            "used": [
              "string"
            ]
          }
        },
        "model": "string",
        "make": "string",
        "inventory": {
          "usedYears": [
            "string"
          ],
          "newYears": [
            "string"
          ]
        }
      }
    ]
  }
}