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

# /autoru/dealers/offers

> List the car offers of a specific Auto.ru dealer. Returns full offer cards (price, mileage, vehicle specification, documents, photos) for the dealer's current inventory, paginated to the requested count.

**Price:** 20 credits per 37 results

**⚠️ Common errors:** 412: Dealer not found



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/autoru/dealers/offers
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/autoru/dealers/offers:
    post:
      tags:
        - /autoru
      summary: /autoru/dealers/offers
      description: >-
        List the car offers of a specific Auto.ru dealer. Returns full offer
        cards (price, mileage, vehicle specification, documents, photos) for the
        dealer's current inventory, paginated to the requested count.


        **Price:** 20 credits per 37 results


        **⚠️ Common errors:** 412: Dealer not found
      operationId: __api_autoru_dealers_offers_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AutoruDealersOffersPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AutoruOffer'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    AutoruDealersOffersPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        dealer:
          type: string
          minLength: 1
        count:
          type: integer
          minimum: 1
      type: object
      required:
        - dealer
        - count
    AutoruOffer:
      properties:
        '@type':
          type: string
          default: AutoruOffer
        id:
          type: string
        hash:
          anyOf:
            - type: string
            - type: 'null'
        sale_id:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        category:
          anyOf:
            - type: string
            - type: 'null'
        section:
          anyOf:
            - type: string
            - type: 'null'
        status:
          anyOf:
            - type: string
            - type: 'null'
        availability:
          anyOf:
            - type: string
            - type: 'null'
        color_hex:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: integer
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        has_nds:
          anyOf:
            - type: boolean
            - type: 'null'
        predicted_price:
          anyOf:
            - $ref: '#/components/schemas/AutoruPriceRange'
            - type: 'null'
        price_history:
          items:
            $ref: '#/components/schemas/AutoruPricePoint'
          type: array
          default: []
        owner_expenses:
          anyOf:
            - $ref: '#/components/schemas/AutoruOwnerExpenses'
            - type: 'null'
        discount_options:
          anyOf:
            - $ref: '#/components/schemas/AutoruDiscountOptions'
            - type: 'null'
        mileage:
          anyOf:
            - type: integer
            - type: 'null'
        condition:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        image_count:
          anyOf:
            - type: integer
            - type: 'null'
        vehicle:
          anyOf:
            - $ref: '#/components/schemas/AutoruVehicle'
            - type: 'null'
        documents:
          anyOf:
            - $ref: '#/components/schemas/AutoruDocuments'
            - type: 'null'
        seller:
          anyOf:
            - $ref: '#/components/schemas/AutoruSeller'
            - type: 'null'
        salon:
          anyOf:
            - $ref: '#/components/schemas/AutoruSalon'
            - type: 'null'
        view_count:
          anyOf:
            - type: integer
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        days_in_stock:
          anyOf:
            - type: integer
            - type: 'null'
        created_at:
          anyOf:
            - type: integer
            - type: 'null'
        updated_at:
          anyOf:
            - type: integer
            - type: 'null'
        tags:
          items:
            type: string
          type: array
          default: []
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    AutoruPriceRange:
      properties:
        '@type':
          type: string
          default: AutoruPriceRange
        price_from:
          anyOf:
            - type: integer
            - type: 'null'
        price_to:
          anyOf:
            - type: integer
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    AutoruPricePoint:
      properties:
        '@type':
          type: string
          default: AutoruPricePoint
        price_rur:
          anyOf:
            - type: integer
            - type: 'null'
        price_eur:
          anyOf:
            - type: integer
            - type: 'null'
        price_usd:
          anyOf:
            - type: integer
            - type: 'null'
        created_at:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
    AutoruOwnerExpenses:
      properties:
        '@type':
          type: string
          default: AutoruOwnerExpenses
        transport_tax:
          anyOf:
            - type: integer
            - type: 'null'
        transport_tax_year:
          anyOf:
            - type: integer
            - type: 'null'
        osago_insurance:
          items:
            $ref: '#/components/schemas/AutoruInsuranceQuote'
          type: array
          default: []
      type: object
    AutoruDiscountOptions:
      properties:
        '@type':
          type: string
          default: AutoruDiscountOptions
        tradein:
          anyOf:
            - type: integer
            - type: 'null'
        insurance:
          anyOf:
            - type: integer
            - type: 'null'
        credit:
          anyOf:
            - type: integer
            - type: 'null'
        max_discount:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
    AutoruVehicle:
      properties:
        '@type':
          type: string
          default: AutoruVehicle
        mark:
          anyOf:
            - type: string
            - type: 'null'
        mark_ru:
          anyOf:
            - type: string
            - type: 'null'
        model:
          anyOf:
            - type: string
            - type: 'null'
        model_ru:
          anyOf:
            - type: string
            - type: 'null'
        generation:
          anyOf:
            - type: string
            - type: 'null'
        generation_id:
          anyOf:
            - type: string
            - type: 'null'
        year_from:
          anyOf:
            - type: integer
            - type: 'null'
        year_to:
          anyOf:
            - type: integer
            - type: 'null'
        price_segment:
          anyOf:
            - type: string
            - type: 'null'
        body_type:
          anyOf:
            - type: string
            - type: 'null'
        door_count:
          anyOf:
            - type: integer
            - type: 'null'
        seats:
          items:
            type: integer
          type: array
          default: []
        auto_class:
          anyOf:
            - type: string
            - type: 'null'
        engine_type:
          anyOf:
            - type: string
            - type: 'null'
        transmission:
          anyOf:
            - type: string
            - type: 'null'
        drive:
          anyOf:
            - type: string
            - type: 'null'
        engine_volume:
          anyOf:
            - type: integer
            - type: 'null'
        power_hp:
          anyOf:
            - type: integer
            - type: 'null'
        power_kw:
          anyOf:
            - type: integer
            - type: 'null'
        acceleration:
          anyOf:
            - type: number
            - type: 'null'
        fuel_rate:
          anyOf:
            - type: number
            - type: 'null'
        modification:
          anyOf:
            - type: string
            - type: 'null'
        complectation:
          anyOf:
            - type: string
            - type: 'null'
        steering_wheel:
          anyOf:
            - type: string
            - type: 'null'
        vendor:
          anyOf:
            - type: string
            - type: 'null'
        equipment:
          items:
            type: string
          type: array
          default: []
        equipment_groups:
          items:
            $ref: '#/components/schemas/AutoruEquipmentGroup'
          type: array
          default: []
      type: object
    AutoruDocuments:
      properties:
        '@type':
          type: string
          default: AutoruDocuments
        year:
          anyOf:
            - type: integer
            - type: 'null'
        owner_count:
          anyOf:
            - type: integer
            - type: 'null'
        pts:
          anyOf:
            - type: string
            - type: 'null'
        is_pts_original:
          anyOf:
            - type: boolean
            - type: 'null'
        is_custom_cleared:
          anyOf:
            - type: boolean
            - type: 'null'
        vin:
          anyOf:
            - type: string
            - type: 'null'
        vin_resolution:
          anyOf:
            - type: string
            - type: 'null'
        pts_resolution:
          anyOf:
            - type: string
            - type: 'null'
        owners_resolution:
          anyOf:
            - type: string
            - type: 'null'
        legal_resolution:
          anyOf:
            - type: string
            - type: 'null'
        accidents_resolution:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    AutoruSeller:
      properties:
        '@type':
          type: string
          default: AutoruSeller
        name:
          anyOf:
            - type: string
            - type: 'null'
        seller_type:
          anyOf:
            - type: string
            - type: 'null'
        geo:
          anyOf:
            - $ref: '#/components/schemas/AutoruGeo'
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        registration_date:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    AutoruSalon:
      properties:
        '@type':
          type: string
          default: AutoruSalon
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        is_official:
          anyOf:
            - type: boolean
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        phones:
          items:
            type: string
          type: array
          default: []
        geo:
          anyOf:
            - $ref: '#/components/schemas/AutoruGeo'
            - type: 'null'
        offer_count:
          anyOf:
            - type: integer
            - type: 'null'
      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
    AutoruInsuranceQuote:
      properties:
        '@type':
          type: string
          default: AutoruInsuranceQuote
        insurance_company:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
    AutoruEquipmentGroup:
      properties:
        '@type':
          type: string
          default: AutoruEquipmentGroup
        name:
          type: string
        values:
          items:
            type: string
          type: array
          default: []
      type: object
      required:
        - name
    AutoruGeo:
      properties:
        '@type':
          type: string
          default: AutoruGeo
        address:
          anyOf:
            - type: string
            - type: 'null'
        region:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
      type: object
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````