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

> Get CarSensor new-car catalog details for a model by maker/model slug: name, spec ranges (power, displacement, drive, seats, fuel economy), body dimensions, new-car price range, generations and review rating.

**Price:** 5 credits

**⚠️ Common errors:** 412: Model not found (valid slug format but the catalog page does not exist)



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/carsensor/models
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:
    post:
      tags:
        - /carsensor
      summary: /carsensor/models
      description: >-
        Get CarSensor new-car catalog details for a model by maker/model slug:
        name, spec ranges (power, displacement, drive, seats, fuel economy),
        body dimensions, new-car price range, generations and review rating.


        **Price:** 5 credits


        **⚠️ Common errors:** 412: Model not found (valid slug format but the
        catalog page does not exist)
      operationId: __api_carsensor_models_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CarsensorModelsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CarsensorModel'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    CarsensorModelsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        maker:
          type: string
          minLength: 1
        model:
          type: string
          minLength: 1
      type: object
      required:
        - maker
        - model
    CarsensorModel:
      properties:
        '@type':
          type: string
          default: CarsensorModel
        maker:
          type: string
        model:
          type: string
        maker_name:
          anyOf:
            - type: string
            - type: 'null'
        model_name:
          anyOf:
            - type: string
            - type: 'null'
        url:
          type: string
        max_power:
          anyOf:
            - type: string
            - type: 'null'
        displacement:
          anyOf:
            - type: string
            - type: 'null'
        drive:
          anyOf:
            - type: string
            - type: 'null'
        seats:
          anyOf:
            - type: string
            - type: 'null'
        length:
          anyOf:
            - type: string
            - type: 'null'
        width:
          anyOf:
            - type: string
            - type: 'null'
        height:
          anyOf:
            - type: string
            - type: 'null'
        wheelbase:
          anyOf:
            - type: string
            - type: 'null'
        fuel_economy_wltc:
          anyOf:
            - type: string
            - type: 'null'
        fuel_economy_jc08:
          anyOf:
            - type: string
            - type: 'null'
        fuel_economy_1015:
          anyOf:
            - type: string
            - type: 'null'
        eco_standard:
          anyOf:
            - type: string
            - type: 'null'
        fuel_standard:
          anyOf:
            - type: string
            - type: 'null'
        new_price_min:
          anyOf:
            - type: number
            - type: 'null'
        new_price_max:
          anyOf:
            - type: number
            - type: 'null'
        review_rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        generations:
          items:
            $ref: '#/components/schemas/CarsensorModelGeneration'
          type: array
          default: []
        image:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - maker
        - model
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    CarsensorModelGeneration:
      properties:
        '@type':
          type: string
          default: CarsensorModelGeneration
        code:
          type: string
        period:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - code
    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

````