> ## 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/models/prices

> Get CarSensor market price information for a model by maker and model code: new and used price ranges, review rating with category breakdown, popularity ranking, listing count and dealer count.

**Price:** 10 credits

**💡 AI Hint:** Fetch CarSensor market-price (相場) data for a model by maker (named) and model code (e.g. 'S122' for Prius). Returns model_name, period, new_price_min/max and used_price_min/max (JPY), review_rating and review_count, the rating breakdown (design/driving/comfort/drivability/loading/running_cost), ranking_category and ranking_position, listing_count and dealer_count. The model code is the same code used as the model filter on listings search.

**⚠️ Common errors:** 412: Model not found (valid code format but the market-price page does not exist)



## OpenAPI

````yaml /openapi-filtered.json post /api/carsensor/models/prices
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/models/prices:
    post:
      tags:
        - /carsensor
      summary: /carsensor/models/prices
      description: >-
        Get CarSensor market price information for a model by maker and model
        code: new and used price ranges, review rating with category breakdown,
        popularity ranking, listing count and dealer count.


        **Price:** 10 credits


        **💡 AI Hint:** Fetch CarSensor market-price (相場) data for a model by
        maker (named) and model code (e.g. 'S122' for Prius). Returns
        model_name, period, new_price_min/max and used_price_min/max (JPY),
        review_rating and review_count, the rating breakdown
        (design/driving/comfort/drivability/loading/running_cost),
        ranking_category and ranking_position, listing_count and dealer_count.
        The model code is the same code used as the model filter on listings
        search.


        **⚠️ Common errors:** 412: Model not found (valid code format but the
        market-price page does not exist)
      operationId: __api_carsensor_models_prices_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CarsensorModelsPricesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CarsensorModelPrices'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    CarsensorModelsPricesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          description: Max scrapping execution timeout (in seconds)
          default: 300
        maker:
          $ref: '#/components/schemas/CarsensorMaker'
          description: Car maker
        model:
          type: string
          minLength: 1
          description: CarSensor model code (e.g. 'S122' for Prius)
          examples:
            - S122
      type: object
      required:
        - maker
        - model
    CarsensorModelPrices:
      properties:
        '@type':
          type: string
          default: CarsensorModelPrices
        maker:
          type: string
        model:
          type: string
        code:
          type: string
        url:
          type: string
        model_name:
          anyOf:
            - type: string
            - type: 'null'
        period:
          anyOf:
            - type: string
            - type: 'null'
        new_price_min:
          anyOf:
            - type: number
            - type: 'null'
        new_price_max:
          anyOf:
            - type: number
            - type: 'null'
        used_price_min:
          anyOf:
            - type: number
            - type: 'null'
        used_price_max:
          anyOf:
            - type: number
            - type: 'null'
        review_rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        rating_design:
          anyOf:
            - type: number
            - type: 'null'
        rating_driving:
          anyOf:
            - type: number
            - type: 'null'
        rating_comfort:
          anyOf:
            - type: number
            - type: 'null'
        rating_drivability:
          anyOf:
            - type: number
            - type: 'null'
        rating_loading:
          anyOf:
            - type: number
            - type: 'null'
        rating_running_cost:
          anyOf:
            - type: number
            - type: 'null'
        ranking_category:
          anyOf:
            - type: string
            - type: 'null'
        ranking_position:
          anyOf:
            - type: integer
            - type: 'null'
        listing_count:
          anyOf:
            - type: integer
            - type: 'null'
        dealer_count:
          anyOf:
            - type: integer
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - maker
        - model
        - code
        - 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
    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

````