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

> Search CarSensor used-car dealers by prefecture, maker stocked, shop name keyword and shop/listing conditions. Returns shop cards with id, url, name, location, review count and rating, and listing count.

**Price:** 5 credits per 20 results

**💡 AI Hint:** Search CarSensor dealers. All filters optional except count. prefecture (omit for all Japan), maker (shops stocking this maker), keyword (shop name), conditions (multi: staff/after_service/fair_event/has_reviews/buys_cars/warranty/maintenance/coupon/certified_listings/carsensor_warranty/purchase_plan), proper_dealer. Each result has id, url, name, prefecture, location, review_count, rating, listing_count and image. The id is the shop_id; pair it with prefecture as 'prefecture/shop_id' for the dealers endpoint.



## OpenAPI

````yaml /openapi-filtered.json post /api/carsensor/dealers/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/dealers/search:
    post:
      tags:
        - /carsensor
      summary: /carsensor/dealers/search
      description: >-
        Search CarSensor used-car dealers by prefecture, maker stocked, shop
        name keyword and shop/listing conditions. Returns shop cards with id,
        url, name, location, review count and rating, and listing count.


        **Price:** 5 credits per 20 results


        **💡 AI Hint:** Search CarSensor dealers. All filters optional except
        count. prefecture (omit for all Japan), maker (shops stocking this
        maker), keyword (shop name), conditions (multi:
        staff/after_service/fair_event/has_reviews/buys_cars/warranty/maintenance/coupon/certified_listings/carsensor_warranty/purchase_plan),
        proper_dealer. Each result has id, url, name, prefecture, location,
        review_count, rating, listing_count and image. The id is the shop_id;
        pair it with prefecture as 'prefecture/shop_id' for the dealers
        endpoint.
      operationId: __api_carsensor_dealers_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CarsensorDealersSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CarsensorShopCard'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    CarsensorDealersSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          description: Max scrapping execution timeout (in seconds)
          default: 300
        prefecture:
          anyOf:
            - $ref: '#/components/schemas/CarsensorPrefecture'
            - type: 'null'
          description: Prefecture (omit to search all Japan)
        maker:
          anyOf:
            - $ref: '#/components/schemas/CarsensorMaker'
            - type: 'null'
          description: Filter shops that stock this maker
        keyword:
          anyOf:
            - type: string
              minLength: 1
            - type: 'null'
          description: Shop name keyword
          examples:
            - ガリバー
        conditions:
          anyOf:
            - items:
                $ref: '#/components/schemas/CarsensorShopCondition'
              type: array
            - type: 'null'
          description: Required shop/listing conditions
        proper_dealer:
          type: boolean
          description: Only JU proper-sales certified shops
          default: false
        count:
          type: integer
          minimum: 1
          description: Max number of results to return
      type: object
      required:
        - count
    CarsensorShopCard:
      properties:
        '@type':
          type: string
          default: CarsensorShopCard
        id:
          type: string
        url:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        prefecture:
          anyOf:
            - type: string
            - type: 'null'
        location:
          anyOf:
            - type: string
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        listing_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
    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
    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
    CarsensorShopCondition:
      type: string
      enum:
        - staff
        - after_service
        - fair_event
        - has_reviews
        - buys_cars
        - warranty
        - maintenance
        - coupon
        - certified_listings
        - carsensor_warranty
        - purchase_plan
    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

````