### Auto.Dev API Endpoints Source: https://www.auto.dev/docs/index This section details the available endpoints for the Auto.Dev API. Each endpoint represents a specific data retrieval function, typically accessed via the GET HTTP method. ```APIDOC API Endpoints: /api/models (GET) Description: Retrieves a list of available car models. /api/vin/{vin} (GET) Description: Retrieves detailed information for a vehicle using its VIN. Parameters: - vin: The Vehicle Identification Number (string). /api/plate/{state}/{plate} (GET) Description: Retrieves information for a vehicle using its license plate and state. Parameters: - state: The state abbreviation (string). - plate: The license plate number (string). /api/vin/{vin}/listing (GET) Description: Retrieves listing information associated with a specific VIN. Parameters: - vin: The Vehicle Identification Number (string). /api/vin/{vin}/intelligence (GET) Description: Retrieves intelligence data related to a specific VIN. Parameters: - vin: The Vehicle Identification Number (string). /api/cities (GET) Description: Retrieves a list of supported cities. /api/zip/{zip} (GET) Description: Retrieves information associated with a specific zip code. Parameters: - zip: The zip code (string). /api/listings/{vin} (GET) Description: Retrieves listings for a specific VIN. Parameters: - vin: The Vehicle Identification Number (string). /api/listings/{make}/{model} (GET) Description: Retrieves listings for a specific make and model. Parameters: - make: The vehicle manufacturer (string). - model: The vehicle model (string). /api/vehicles/{make}/{model} (GET) Description: Retrieves vehicle details for a specific make and model. Parameters: - make: The vehicle manufacturer (string). - model: The vehicle model (string). /api/listings/{make}/{model}/{trim} (GET) Description: Retrieves listings for a specific make, model, and trim. Parameters: - make: The vehicle manufacturer (string). - model: The vehicle model (string). - trim: The vehicle trim level (string). /api/autosuggest/{term} (GET) Description: Provides autosuggestions based on a search term. Parameters: - term: The search term (string). /api/listings (GET) Description: Retrieves a general list of available vehicle listings. ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.