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

> Search CarSensor used-car listings by maker, model, body type, fuel, drive, transmission, prefecture, body price/year/mileage/displacement ranges, color, warranty, equipment features and more. Returns listing cards with id, url, title, body and total price, year, mileage, inspection, repair history, dealer and location.

**Price:** 20 credits per 30 results

**💡 AI Hint:** Search CarSensor (Japanese used-car marketplace) listings. All filters optional except count. maker is a named maker (toyota/nissan/honda/bmw/...); model is the CarSensor model code (e.g. 'S122') and requires maker. Filters: body_type, fuel, drive (2wd/4wd), transmission (at/mt), steering (right/left), prefecture, color (multi), warranty, inspection, sliding_door, audio, nav_tv, features (multi equipment list), price_body_min/max (JPY), monthly_payment_min/max and down_payment_max (loan financing, JPY), year_min/max, mileage_min/max (km), displacement_min/max (cc), doors, seats, plus boolean flags (no_repair_history, one_owner, non_smoking, unused, certified, maker_dealer, has_total_price, multiple_photos). Sort by relevance/total_price/body_price/year/mileage asc or desc. Each result has id, url, title, body_price, total_price (JPY), year, mileage (km), inspection, repair_history, warranty, prefecture, city, dealer_name, dealer_rating and image.



## OpenAPI

````yaml /openapi-filtered.json post /api/carsensor/listings/search
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/search:
    post:
      tags:
        - /carsensor
      summary: /carsensor/listings/search
      description: >-
        Search CarSensor used-car listings by maker, model, body type, fuel,
        drive, transmission, prefecture, body price/year/mileage/displacement
        ranges, color, warranty, equipment features and more. Returns listing
        cards with id, url, title, body and total price, year, mileage,
        inspection, repair history, dealer and location.


        **Price:** 20 credits per 30 results


        **💡 AI Hint:** Search CarSensor (Japanese used-car marketplace)
        listings. All filters optional except count. maker is a named maker
        (toyota/nissan/honda/bmw/...); model is the CarSensor model code (e.g.
        'S122') and requires maker. Filters: body_type, fuel, drive (2wd/4wd),
        transmission (at/mt), steering (right/left), prefecture, color (multi),
        warranty, inspection, sliding_door, audio, nav_tv, features (multi
        equipment list), price_body_min/max (JPY), monthly_payment_min/max and
        down_payment_max (loan financing, JPY), year_min/max, mileage_min/max
        (km), displacement_min/max (cc), doors, seats, plus boolean flags
        (no_repair_history, one_owner, non_smoking, unused, certified,
        maker_dealer, has_total_price, multiple_photos). Sort by
        relevance/total_price/body_price/year/mileage asc or desc. Each result
        has id, url, title, body_price, total_price (JPY), year, mileage (km),
        inspection, repair_history, warranty, prefecture, city, dealer_name,
        dealer_rating and image.
      operationId: __api_carsensor_listings_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CarsensorListingsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CarsensorListingCard'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    CarsensorListingsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          description: Max scrapping execution timeout (in seconds)
          default: 300
        keyword:
          anyOf:
            - type: string
              minLength: 1
            - type: 'null'
          description: Free-text keyword
          examples:
            - サンルーフ
        maker:
          anyOf:
            - $ref: '#/components/schemas/CarsensorMaker'
            - type: 'null'
          description: Car maker
        model:
          anyOf:
            - type: string
              minLength: 1
            - type: 'null'
          description: CarSensor model code (requires maker), e.g. 'S122'
          examples:
            - S122
        body_type:
          anyOf:
            - $ref: '#/components/schemas/CarsensorBodyType'
            - type: 'null'
          description: Body type
        fuel:
          anyOf:
            - $ref: '#/components/schemas/CarsensorFuel'
            - type: 'null'
          description: Fuel type
        drive:
          anyOf:
            - $ref: '#/components/schemas/CarsensorDrive'
            - type: 'null'
          description: Drive type
        transmission:
          anyOf:
            - $ref: '#/components/schemas/CarsensorTransmission'
            - type: 'null'
          description: Transmission type
        steering:
          anyOf:
            - $ref: '#/components/schemas/CarsensorSteering'
            - type: 'null'
          description: Steering wheel side
        prefecture:
          anyOf:
            - $ref: '#/components/schemas/CarsensorPrefecture'
            - type: 'null'
          description: Prefecture
        color:
          anyOf:
            - items:
                $ref: '#/components/schemas/CarsensorColor'
              type: array
            - type: 'null'
          description: Exterior colors
        warranty:
          anyOf:
            - $ref: '#/components/schemas/CarsensorWarranty'
            - type: 'null'
          description: Warranty type
        inspection:
          anyOf:
            - $ref: '#/components/schemas/CarsensorInspection'
            - type: 'null'
          description: Minimum remaining vehicle inspection
        sliding_door:
          anyOf:
            - $ref: '#/components/schemas/CarsensorSlidingDoor'
            - type: 'null'
          description: Sliding door type
        audio:
          anyOf:
            - $ref: '#/components/schemas/CarsensorAudio'
            - type: 'null'
          description: Audio equipment
        nav_tv:
          anyOf:
            - $ref: '#/components/schemas/CarsensorNavTv'
            - type: 'null'
          description: Navigation/TV equipment
        features:
          anyOf:
            - items:
                $ref: '#/components/schemas/CarsensorFeature'
              type: array
            - type: 'null'
          description: Required equipment/condition features
        price_body_min:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
          description: Minimum body price (JPY)
        price_body_max:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
          description: Maximum body price (JPY)
        monthly_payment_min:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
          description: Minimum monthly loan payment (JPY)
        monthly_payment_max:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
          description: Maximum monthly loan payment (JPY)
        down_payment_max:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
          description: Maximum loan down payment (JPY)
        year_min:
          anyOf:
            - type: integer
              minimum: 1900
            - type: 'null'
          description: Minimum production year
        year_max:
          anyOf:
            - type: integer
              minimum: 1900
            - type: 'null'
          description: Maximum production year
        mileage_min:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
          description: Minimum mileage (km)
        mileage_max:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
          description: Maximum mileage (km)
        displacement_min:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
          description: Minimum engine displacement (cc)
        displacement_max:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
          description: Maximum engine displacement (cc)
        doors:
          anyOf:
            - type: integer
              maximum: 5
              minimum: 2
            - type: 'null'
          description: Number of doors
        seats:
          anyOf:
            - type: integer
              maximum: 10
              minimum: 2
            - type: 'null'
          description: Number of seats
        no_repair_history:
          type: boolean
          description: Only listings with no repair history
          default: false
        one_owner:
          type: boolean
          description: Only one-owner listings
          default: false
        non_smoking:
          type: boolean
          description: Only non-smoking-car listings
          default: false
        unused:
          type: boolean
          description: Only registered/unused (nearly new) listings
          default: false
        certified:
          type: boolean
          description: Only CarSensor certified-quality listings
          default: false
        maker_dealer:
          type: boolean
          description: Only maker-affiliated dealers
          default: false
        has_total_price:
          type: boolean
          description: Only listings that disclose total price
          default: false
        multiple_photos:
          type: boolean
          description: Only listings with multiple photos
          default: false
        sort:
          $ref: '#/components/schemas/CarsensorSort'
          description: Sort order
          default: relevance
        count:
          type: integer
          minimum: 1
          description: Max number of results to return
      type: object
      required:
        - count
    CarsensorListingCard:
      properties:
        '@type':
          type: string
          default: CarsensorListingCard
        id:
          type: string
        url:
          type: string
        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'
        mileage:
          anyOf:
            - type: integer
            - type: 'null'
        inspection:
          anyOf:
            - type: string
            - type: 'null'
        repair_history:
          anyOf:
            - type: string
            - type: 'null'
        warranty:
          anyOf:
            - type: string
            - type: 'null'
        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'
        dealer_rating:
          anyOf:
            - type: number
            - type: 'null'
        dealer_review_count:
          anyOf:
            - type: integer
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    CarsensorMaker:
      type: string
      enum:
        - lexus
        - toyota
        - nissan
        - honda
        - mazda
        - subaru
        - suzuki
        - mitsubishi
        - daihatsu
        - isuzu
        - mitsuoka
        - tommykaira
        - hino
        - ud_trucks
        - fuso
        - domestic_other
        - mercedes_benz
        - mercedes_amg
        - mercedes_maybach
        - amg
        - maybach
        - smart
        - bmw
        - alpina
        - audi
        - volkswagen
        - opel
        - porsche
        - brabus
        - artega
        - mini
        - cadillac
        - chevrolet
        - buick
        - pontiac
        - saturn
        - hummer
        - gmc
        - ford
        - lincoln
        - mercury
        - saleen
        - chrysler
        - dodge
        - plymouth
        - amc
        - amc_jeep
        - jeep
        - oldsmobile
        - winnebago
        - dmc
        - tesla
        - us_lexus
        - us_infiniti
        - us_acura
        - us_toyota
        - scion
        - us_nissan
        - us_honda
        - us_mazda
        - us_subaru
        - us_mitsubishi
        - rolls_royce
        - bentley
        - jaguar
        - daimler
        - land_rover
        - aston_martin
        - lotus
        - london_taxi
        - mclaren
        - mg
        - rover
        - austin
        - morris
        - bl
        - moke
        - marcos
        - vanden_plas
        - wolseley
        - riley
        - caterham
        - westfield
        - morgan
        - panther
        - triumph
        - healey
        - ginetta
        - vauxhall
        - volvo
        - saab
        - scania
        - peugeot
        - renault
        - citroen
        - ds
        - bugatti
        - alpine
        - fiat
        - alfa_romeo
        - ferrari
        - lamborghini
        - maserati
        - lancia
        - autobianchi
        - abarth
        - innocenti
        - de_tomaso
        - ktm
        - hooten
        - lada
        - byd
        - hyundai
        - thai_toyota
        - td
        - birkin
        - import_other
    CarsensorBodyType:
      type: string
      enum:
        - kei
        - compact
        - minivan
        - station_wagon
        - suv
        - sedan
        - coupe
        - hatchback
        - open_car
        - pickup_truck
        - truck
        - other
    CarsensorFuel:
      type: string
      enum:
        - petrol
        - diesel
        - hybrid
        - electric
        - other
    CarsensorDrive:
      type: string
      enum:
        - 2wd
        - 4wd
    CarsensorTransmission:
      type: string
      enum:
        - at
        - mt
    CarsensorSteering:
      type: string
      enum:
        - right
        - left
    CarsensorPrefecture:
      type: string
      enum:
        - hokkaido
        - aomori
        - iwate
        - miyagi
        - akita
        - yamagata
        - fukushima
        - ibaraki
        - tochigi
        - gunma
        - saitama
        - chiba
        - tokyo
        - kanagawa
        - niigata
        - toyama
        - ishikawa
        - fukui
        - yamanashi
        - nagano
        - gifu
        - shizuoka
        - aichi
        - mie
        - shiga
        - kyoto
        - osaka
        - hyogo
        - nara
        - wakayama
        - tottori
        - shimane
        - okayama
        - hiroshima
        - yamaguchi
        - tokushima
        - kagawa
        - ehime
        - kouchi
        - fukuoka
        - saga
        - nagasaki
        - kumamoto
        - ooita
        - miyazaki
        - kagoshima
        - okinawa
    CarsensorColor:
      type: string
      enum:
        - white
        - pearl
        - black
        - blue
        - silver
        - gray
        - brown
        - red
        - green
        - purple
        - yellow
        - pink
        - orange
        - gold
        - other
    CarsensorWarranty:
      type: string
      enum:
        - any
        - dealer
        - shop
        - carsensor_after
    CarsensorInspection:
      type: string
      enum:
        - half_year
        - one_year
        - two_years
    CarsensorSlidingDoor:
      type: string
      enum:
        - both_power
        - both_manual
        - one_power
        - one_manual
        - both_one_power
    CarsensorAudio:
      type: string
      enum:
        - cd
        - md
        - cd_md
        - music_server
        - music_player_ready
    CarsensorNavTv:
      type: string
      enum:
        - car_navi
        - cd_navi
        - dvd_navi
        - hdd_navi
        - memory_navi
        - tv
        - one_seg_tv
        - full_seg_tv
        - navi_tv
        - dvd_play
        - bluray_play
    CarsensorFeature:
      type: string
      enum:
        - no_repair_history
        - one_owner
        - non_smoking
        - registered_unused
        - maintenance_record
        - test_drive_car
        - rental_up
        - cold_weather_spec
        - turbo
        - keyless_entry
        - smart_key
        - power_window
        - power_steering
        - air_conditioner
        - dual_air_conditioner
        - hid_headlight
        - fog_lamp
        - auto_high_beam
        - led_headlight
        - adaptive_headlight
        - etc
        - anti_theft
        - sunroof
        - roof_rail
        - rear_seat_monitor
        - air_suspension
        - power_supply_1500w
        - drive_recorder
        - power_tailgate
        - display_audio
        - abs
        - support_car
        - collision_brake
        - cruise_control
        - adaptive_cruise
        - lane_keep_assist
        - parking_assist
        - pedal_misstep_prevention
        - stability_control
        - obstacle_sensor
        - driver_airbag
        - passenger_airbag
        - side_airbag
        - curtain_airbag
        - active_headrest
        - front_camera
        - side_camera
        - back_camera
        - around_view_monitor
        - blind_spot_monitor
        - rear_traffic_monitor
        - hill_descent_control
        - idling_stop
        - eco_car
        - full_aero
        - lowered
        - alloy_wheels
        - repainted
        - lifted_up
        - full_flat_seats
        - third_row_seats
        - walk_through
        - seat_heater
        - seat_air_conditioner
        - leather_seats
        - bench_seats
        - electric_seats
        - ottoman
    CarsensorSort:
      type: string
      enum:
        - relevance
        - total_price_asc
        - total_price_desc
        - body_price_asc
        - body_price_desc
        - year_asc
        - year_desc
        - mileage_asc
        - mileage_desc
    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

````