CarGurus Car Selector API

Open API for building new/used listing search widgets.

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/cargurus-dealer-car-selector-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

cargurus-dealer-car-selector-api-openapi.yml Raw ↑
openapi: 3.0.3
info:
  title: CarGurus Developer APIs Car Selector API
  description: 'Documented HTTP APIs published by CarGurus under the /Cars/api/ path. Four surfaces are described here: the open (no-auth) Car Selector API for building new/used listing search widgets, and three partner/dealer-gated APIs - Instant Market Value (IMV), Dealer Reviews, and Dealer Stats. The gated APIs authenticate with an appId and authToken issued by CarGurus and are passed as query parameters alongside a JSON body. Endpoint paths, methods, and the Car Selector, IMV, and Dealer Reviews schemas are taken directly from CarGurus developer documentation; the Dealer Stats response is modeled from CarGurus documentation and published examples (endpointsModeled). CarGurus does not publish a public inventory-listings pull API - dealer inventory is ingested via inventory feeds (feed providers / IMT) - and leads are delivered to dealer CRMs rather than exposed here.'
  version: '1.0'
  contact:
    name: CarGurus Developers
    url: https://www.cargurus.com/Cars/developers/
servers:
- url: https://www.cargurus.com/Cars/api/1.0
  description: CarGurus API v1.0 (Car Selector, IMV, Dealer Reviews)
- url: https://www.cargurus.com/Cars/api/2.0
  description: CarGurus API v2.0 (Dealer Stats)
tags:
- name: Car Selector
  description: Open API for building new/used listing search widgets.
paths:
  /carselector/listMakes.action:
    get:
      tags:
      - Car Selector
      summary: List makes
      description: List the vehicle makes available for a NEW or USED search, in alphabetical order, along with the available search distances. No authentication required.
      operationId: listMakes
      parameters:
      - name: searchType
        in: query
        required: true
        description: Type of search - NEW or USED.
        schema:
          type: string
          enum:
          - NEW
          - USED
      responses:
        '200':
          description: Makes and distances.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListMakesResponse'
  /carselector/listModels.action:
    get:
      tags:
      - Car Selector
      summary: List models
      description: List the models for a given make, in alphabetical order.
      operationId: listModels
      parameters:
      - name: searchType
        in: query
        required: true
        schema:
          type: string
          enum:
          - NEW
          - USED
      - name: makeId
        in: query
        required: true
        description: Make id as returned by listMakes.
        schema:
          type: string
      responses:
        '200':
          description: Models for the make.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListModelsResponse'
  /carselector/listingSearch.action:
    get:
      tags:
      - Car Selector
      summary: Listing search redirect
      description: Construct the URL a user is redirected to when they submit the search form. Returns a CarGurus listing search results page.
      operationId: listingSearch
      parameters:
      - name: searchType
        in: query
        required: true
        schema:
          type: string
          enum:
          - NEW
          - USED
      - name: entityId
        in: query
        required: true
        description: Make or Model entity id selected by the user.
        schema:
          type: string
      - name: postalCode
        in: query
        required: true
        schema:
          type: string
      - name: distance
        in: query
        required: true
        schema:
          type: integer
      - name: affiliatePartner
        in: query
        required: false
        description: Optional affiliate partner identifier.
        schema:
          type: string
      responses:
        '200':
          description: CarGurus listing search results page.
components:
  schemas:
    ListModelsResponse:
      type: object
      properties:
        success:
          type: boolean
        errors:
          type: array
          items:
            type: string
        searchType:
          type: string
        makeId:
          type: string
        models:
          type: array
          items:
            $ref: '#/components/schemas/Entity'
    ListMakesResponse:
      type: object
      properties:
        success:
          type: boolean
        errors:
          type: array
          items:
            type: string
        searchType:
          type: string
        makes:
          type: array
          items:
            $ref: '#/components/schemas/Entity'
        distances:
          type: array
          items:
            $ref: '#/components/schemas/Distance'
    Entity:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        isPopular:
          type: boolean
    Distance:
      type: object
      properties:
        value:
          type: integer
        display:
          type: string
        isDefault:
          type: boolean