> ## 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/listings

> Get a single CarGurus listing by id (or listing URL): full vehicle details — make/model/year/trim, VIN, price, CarGurus Instant Market Value, deal rating, mileage, drivetrain, colors, engine, fuel economy, transmission, photos, options, NHTSA safety ratings, vehicle history (accidents, owners, title), dealer fees, price history and the selling dealer.

**Price:** 1 credit

**💡 AI Hint:** Fetch one CarGurus listing by id (e.g. 448781364) or listing URL. Returns one item with full vehicle specs, price and IMV, deal rating, NHTSA safety, vehicle history, price history and dealer.

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



## OpenAPI

````yaml /openapi-filtered.json post /api/cargurus/listings
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/listings:
    post:
      tags:
        - /cargurus
      summary: /cargurus/listings
      description: >-
        Get a single CarGurus listing by id (or listing URL): full vehicle
        details — make/model/year/trim, VIN, price, CarGurus Instant Market
        Value, deal rating, mileage, drivetrain, colors, engine, fuel economy,
        transmission, photos, options, NHTSA safety ratings, vehicle history
        (accidents, owners, title), dealer fees, price history and the selling
        dealer.


        **Price:** 1 credit


        **💡 AI Hint:** Fetch one CarGurus listing by id (e.g. 448781364) or
        listing URL. Returns one item with full vehicle specs, price and IMV,
        deal rating, NHTSA safety, vehicle history, price history and dealer.


        **⚠️ Common errors:** 412: Listing not found (well-formed but
        nonexistent listing id)
      operationId: __api_cargurus_listings_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CargurusListingsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CargurusListingDetail'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    CargurusListingsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          description: Max scrapping execution timeout (in seconds)
          default: 300
        listing:
          type: string
          minLength: 1
          description: Listing id or a full CarGurus listing URL
          examples:
            - '448781364'
            - https://www.cargurus.com/details/448781364
      type: object
      required:
        - listing
    CargurusListingDetail:
      properties:
        '@type':
          type: string
          default: CargurusListingDetail
        id:
          type: string
        url:
          anyOf:
            - type: string
            - type: 'null'
        vin:
          anyOf:
            - type: string
            - type: 'null'
        make:
          anyOf:
            - type: string
            - type: 'null'
        model:
          anyOf:
            - type: string
            - type: 'null'
        year:
          anyOf:
            - type: integer
            - type: 'null'
        trim:
          anyOf:
            - type: string
            - type: 'null'
        body_type:
          anyOf:
            - type: string
            - type: 'null'
        condition:
          anyOf:
            - type: string
            - type: 'null'
        is_cpo:
          type: boolean
          default: false
        price:
          anyOf:
            - type: number
            - type: 'null'
        imv:
          anyOf:
            - type: number
            - type: 'null'
        msrp:
          anyOf:
            - type: number
            - type: 'null'
        price_differential:
          anyOf:
            - type: number
            - type: 'null'
        deal_rating:
          anyOf:
            - type: string
            - type: 'null'
        mileage:
          anyOf:
            - type: number
            - type: 'null'
        drivetrain:
          anyOf:
            - type: string
            - type: 'null'
        transmission:
          anyOf:
            - type: string
            - type: 'null'
        engine:
          anyOf:
            - type: string
            - type: 'null'
        exterior_color:
          anyOf:
            - type: string
            - type: 'null'
        interior_color:
          anyOf:
            - type: string
            - type: 'null'
        fuel_type:
          anyOf:
            - type: string
            - type: 'null'
        city_mpg:
          anyOf:
            - type: number
            - type: 'null'
        combined_mpg:
          anyOf:
            - type: number
            - type: 'null'
        ev_battery:
          anyOf:
            - $ref: '#/components/schemas/CargurusEvBattery'
            - type: 'null'
        description:
          anyOf:
            - type: string
            - type: 'null'
        stock_number:
          anyOf:
            - type: string
            - type: 'null'
        days_at_dealer:
          anyOf:
            - type: integer
            - type: 'null'
        days_on_market:
          anyOf:
            - type: integer
            - type: 'null'
        saved_count:
          anyOf:
            - type: integer
            - type: 'null'
        is_hot_seller:
          type: boolean
          default: false
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        image_count:
          anyOf:
            - type: integer
            - type: 'null'
        options:
          items:
            type: string
          type: array
          default: []
        dealer_fees:
          items:
            $ref: '#/components/schemas/CargurusDealerFee'
          type: array
          default: []
        safety:
          anyOf:
            - $ref: '#/components/schemas/CargurusSafetyRating'
            - type: 'null'
        vehicle_history:
          anyOf:
            - $ref: '#/components/schemas/CargurusVehicleHistory'
            - type: 'null'
        price_history:
          items:
            $ref: '#/components/schemas/CargurusPriceHistoryPoint'
          type: array
          default: []
        seller:
          anyOf:
            - $ref: '#/components/schemas/CargurusSeller'
            - type: 'null'
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    CargurusEvBattery:
      properties:
        '@type':
          type: string
          default: CargurusEvBattery
        capacity_kwh:
          anyOf:
            - type: number
            - type: 'null'
        range_mi:
          anyOf:
            - type: number
            - type: 'null'
        charge_time_240v_hr:
          anyOf:
            - type: number
            - type: 'null'
      type: object
    CargurusDealerFee:
      properties:
        '@type':
          type: string
          default: CargurusDealerFee
        name:
          anyOf:
            - type: string
            - type: 'null'
        amount:
          anyOf:
            - type: number
            - type: 'null'
        type:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    CargurusSafetyRating:
      properties:
        '@type':
          type: string
          default: CargurusSafetyRating
        overall:
          anyOf:
            - type: integer
            - type: 'null'
        frontal_crash:
          anyOf:
            - type: integer
            - type: 'null'
        side_crash:
          anyOf:
            - type: integer
            - type: 'null'
        rollover:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
    CargurusVehicleHistory:
      properties:
        '@type':
          type: string
          default: CargurusVehicleHistory
        has_report:
          type: boolean
          default: false
        accident_count:
          anyOf:
            - type: integer
            - type: 'null'
        owner_count:
          anyOf:
            - type: integer
            - type: 'null'
        is_salvage:
          type: boolean
          default: false
        is_lemon:
          type: boolean
          default: false
        is_theft:
          type: boolean
          default: false
        is_frame_damaged:
          type: boolean
          default: false
        is_fleet:
          type: boolean
          default: false
        is_total_loss:
          type: boolean
          default: false
        is_damaged:
          type: boolean
          default: false
        report_at:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
    CargurusPriceHistoryPoint:
      properties:
        '@type':
          type: string
          default: CargurusPriceHistoryPoint
        price:
          anyOf:
            - type: number
            - type: 'null'
        recorded_at:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
    CargurusSeller:
      properties:
        '@type':
          type: string
          default: CargurusSeller
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        state:
          anyOf:
            - type: string
            - type: 'null'
        street:
          anyOf:
            - type: string
            - type: 'null'
        zip:
          anyOf:
            - type: string
            - type: 'null'
        phone:
          anyOf:
            - type: string
            - type: 'null'
        sms_phone:
          anyOf:
            - type: string
            - type: 'null'
        website_url:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        inventory_url:
          anyOf:
            - type: string
            - type: 'null'
        is_franchise:
          type: boolean
          default: false
        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'
        opening_hours:
          items:
            $ref: '#/components/schemas/CargurusOpeningHours'
          type: array
          default: []
      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
    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
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````