> ## Documentation Index
> Fetch the complete documentation index at: https://docs.anysite.io/llms.txt
> Use this file to discover all available pages before exploring further.

# /cargurus/dealers

> Get a CarGurus dealer by id (or dealer storefront URL): name, address, phone numbers, website, social links, geo coordinates, average rating, review count, current inventory size and customer reviews.

**Price:** 1 credit

**💡 AI Hint:** Fetch one CarGurus dealer by id (e.g. 389627) or dealer storefront URL. Returns one item with name, address, phones, website, ratings, inventory size and reviews.

**⚠️ Common errors:** 412: Dealer not found (well-formed but nonexistent dealer id)



## OpenAPI

````yaml /openapi-filtered.json post /api/cargurus/dealers
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/cargurus/dealers:
    post:
      tags:
        - /cargurus
      summary: /cargurus/dealers
      description: >-
        Get a CarGurus dealer by id (or dealer storefront URL): name, address,
        phone numbers, website, social links, geo coordinates, average rating,
        review count, current inventory size and customer reviews.


        **Price:** 1 credit


        **💡 AI Hint:** Fetch one CarGurus dealer by id (e.g. 389627) or dealer
        storefront URL. Returns one item with name, address, phones, website,
        ratings, inventory size and reviews.


        **⚠️ Common errors:** 412: Dealer not found (well-formed but nonexistent
        dealer id)
      operationId: __api_cargurus_dealers_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CargurusDealersPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CargurusDealer'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    CargurusDealersPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          description: Max scrapping execution timeout (in seconds)
          default: 300
        dealer:
          type: string
          minLength: 1
          description: Dealer id or a full CarGurus dealer storefront URL
          examples:
            - '389627'
            - >-
              https://www.cargurus.com/Cars/m-Redlands-Chrysler-Jeep-Dodge-Ram-sp389627
      type: object
      required:
        - dealer
    CargurusDealer:
      properties:
        '@type':
          type: string
          default: CargurusDealer
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        street:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        state:
          anyOf:
            - type: string
            - type: 'null'
        zip:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        sales_phone:
          anyOf:
            - type: string
            - type: 'null'
        service_phone:
          anyOf:
            - type: string
            - type: 'null'
        website_url:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        facebook_url:
          anyOf:
            - type: string
            - type: 'null'
        instagram_url:
          anyOf:
            - type: string
            - type: 'null'
        youtube_url:
          anyOf:
            - type: string
            - type: 'null'
        google_maps_url:
          anyOf:
            - type: string
            - type: 'null'
        average_rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        listing_count:
          anyOf:
            - type: integer
            - type: 'null'
        opening_hours:
          items:
            $ref: '#/components/schemas/CargurusOpeningHours'
          type: array
          default: []
        reviews:
          items:
            $ref: '#/components/schemas/CargurusDealerReview'
          type: array
          default: []
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    CargurusOpeningHours:
      properties:
        '@type':
          type: string
          default: CargurusOpeningHours
        day:
          anyOf:
            - type: string
            - type: 'null'
        open_time:
          anyOf:
            - type: string
            - type: 'null'
        close_time:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    CargurusDealerReview:
      properties:
        '@type':
          type: string
          default: CargurusDealerReview
        id:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: integer
            - type: 'null'
        text:
          anyOf:
            - type: string
            - type: 'null'
        author:
          anyOf:
            - type: string
            - type: 'null'
        created_at:
          anyOf:
            - type: integer
            - type: 'null'
        ownership_status:
          anyOf:
            - type: string
            - type: 'null'
        helpful_count:
          anyOf:
            - type: integer
            - type: 'null'
        total_rating_count:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````