> ## 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.

# /carsensor/listings

> Get full CarSensor used-car listing details by listing id: title, maker, model, body and total price, year, mileage, repair history, inspection, body type, drive, color, steering, transmission, fuel, seats, doors, displacement, warranty, CarSensor quality rating, equipment, monthly loan, dealer, location and photos.

**Price:** 10 credits

**💡 AI Hint:** Fetch a single CarSensor used-car listing by its id (e.g. 'AU7085680096') or full listing URL. Returns title, maker, model (with catalog slugs), body_price and total_price (JPY), year, year_era (Japanese era), mileage (km), repair_history, inspection, maintenance, body_type, drive, color, steering, transmission, fuel, seats, doors, displacement (cc), recycle_fee, warranty, quality_rating (CarSensor certified stars 1-5), has_quality_report, is_one_owner, is_non_smoking, is_unused, has_maintenance_record, monthly_loan (JPY/month), equipment (list of fitted features), prefecture, city, dealer_id, dealer_name and images.

**⚠️ Common errors:** 412: Listing not found (valid id but the listing page does not exist or was removed)



## OpenAPI

````yaml /openapi-filtered.json post /api/carsensor/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/carsensor/listings:
    post:
      tags:
        - /carsensor
      summary: /carsensor/listings
      description: >-
        Get full CarSensor used-car listing details by listing id: title, maker,
        model, body and total price, year, mileage, repair history, inspection,
        body type, drive, color, steering, transmission, fuel, seats, doors,
        displacement, warranty, CarSensor quality rating, equipment, monthly
        loan, dealer, location and photos.


        **Price:** 10 credits


        **💡 AI Hint:** Fetch a single CarSensor used-car listing by its id
        (e.g. 'AU7085680096') or full listing URL. Returns title, maker, model
        (with catalog slugs), body_price and total_price (JPY), year, year_era
        (Japanese era), mileage (km), repair_history, inspection, maintenance,
        body_type, drive, color, steering, transmission, fuel, seats, doors,
        displacement (cc), recycle_fee, warranty, quality_rating (CarSensor
        certified stars 1-5), has_quality_report, is_one_owner, is_non_smoking,
        is_unused, has_maintenance_record, monthly_loan (JPY/month), equipment
        (list of fitted features), prefecture, city, dealer_id, dealer_name and
        images.


        **⚠️ Common errors:** 412: Listing not found (valid id but the listing
        page does not exist or was removed)
      operationId: __api_carsensor_listings_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CarsensorListingsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CarsensorListing'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    CarsensorListingsPayload:
      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 (e.g. 'AU7085680096') or full listing URL
          examples:
            - AU7085680096
      type: object
      required:
        - listing
    CarsensorListing:
      properties:
        '@type':
          type: string
          default: CarsensorListing
        id:
          type: string
        url:
          type: string
        maker:
          anyOf:
            - type: string
            - type: 'null'
        model:
          anyOf:
            - type: string
            - type: 'null'
        maker_slug:
          anyOf:
            - type: string
            - type: 'null'
        model_slug:
          anyOf:
            - type: string
            - type: 'null'
        model_code:
          anyOf:
            - type: string
            - type: 'null'
        body_price:
          anyOf:
            - type: number
            - type: 'null'
        total_price:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          type: string
          default: JPY
        year:
          anyOf:
            - type: integer
            - type: 'null'
        year_era:
          anyOf:
            - type: string
            - type: 'null'
        mileage:
          anyOf:
            - type: integer
            - type: 'null'
        repair_history:
          anyOf:
            - type: string
            - type: 'null'
        inspection:
          anyOf:
            - type: string
            - type: 'null'
        maintenance:
          anyOf:
            - type: string
            - type: 'null'
        body_type:
          anyOf:
            - type: string
            - type: 'null'
        drive:
          anyOf:
            - type: string
            - type: 'null'
        color:
          anyOf:
            - type: string
            - type: 'null'
        steering:
          anyOf:
            - type: string
            - type: 'null'
        transmission:
          anyOf:
            - type: string
            - type: 'null'
        fuel:
          anyOf:
            - type: string
            - type: 'null'
        seats:
          anyOf:
            - type: integer
            - type: 'null'
        doors:
          anyOf:
            - type: integer
            - type: 'null'
        displacement:
          anyOf:
            - type: integer
            - type: 'null'
        recycle_fee:
          anyOf:
            - type: string
            - type: 'null'
        warranty:
          anyOf:
            - type: string
            - type: 'null'
        quality_rating:
          anyOf:
            - type: integer
            - type: 'null'
        has_quality_report:
          anyOf:
            - type: boolean
            - type: 'null'
        is_imported:
          anyOf:
            - type: boolean
            - type: 'null'
        is_one_owner:
          anyOf:
            - type: boolean
            - type: 'null'
        is_non_smoking:
          anyOf:
            - type: boolean
            - type: 'null'
        is_unused:
          anyOf:
            - type: boolean
            - type: 'null'
        has_maintenance_record:
          anyOf:
            - type: boolean
            - type: 'null'
        monthly_loan:
          anyOf:
            - type: integer
            - type: 'null'
        equipment:
          items:
            type: string
          type: array
          default: []
        prefecture:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        dealer_id:
          anyOf:
            - type: string
            - type: 'null'
        dealer_pref:
          anyOf:
            - type: string
            - type: 'null'
        dealer_name:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      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

````