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

# /autoscout24/listings

> Get a single AutoScout24 listing by id (UUID) or offer URL: full vehicle specification, prices (public and dealer), equipment, fuel/CO2, environment, leasing, media, location and seller.

**Price:** 10 credits

**💡 AI Hint:** Fetch one AutoScout24 listing by id (UUID, e.g. 0a64d718-7bfe-47f9-97e2-a4b3fdfe2247) or full offer URL. Returns one item with vehicle specs, prices, equipment, fuel/CO2, location and seller.

**⚠️ Common errors:** 412: Listing not found (well-formed but nonexistent listing id)



## OpenAPI

````yaml /openapi-filtered.json post /api/autoscout24/listings
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/autoscout24/listings:
    post:
      tags:
        - /autoscout24
      summary: /autoscout24/listings
      description: >-
        Get a single AutoScout24 listing by id (UUID) or offer URL: full vehicle
        specification, prices (public and dealer), equipment, fuel/CO2,
        environment, leasing, media, location and seller.


        **Price:** 10 credits


        **💡 AI Hint:** Fetch one AutoScout24 listing by id (UUID, e.g.
        0a64d718-7bfe-47f9-97e2-a4b3fdfe2247) or full offer URL. Returns one
        item with vehicle specs, prices, equipment, fuel/CO2, location and
        seller.


        **⚠️ Common errors:** 412: Listing not found (well-formed but
        nonexistent listing id)
      operationId: __api_autoscout24_listings_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AutoScout24ListingsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AutoScout24ListingDetail'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    AutoScout24ListingsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          description: Max scrapping execution timeout (in seconds)
          default: 300
        listing:
          type: string
          minLength: 1
          description: Listing id (UUID) or a full AutoScout24 offer URL
          examples:
            - 0a64d718-7bfe-47f9-97e2-a4b3fdfe2247
            - >-
              https://www.autoscout24.com/offers/bmw-116-diesel-black-cat_ma13mo18480-0a64d718-7bfe-47f9-97e2-a4b3fdfe2247
      type: object
      required:
        - listing
    AutoScout24ListingDetail:
      properties:
        '@type':
          type: string
          default: AutoScout24ListingDetail
        id:
          type: string
        url:
          anyOf:
            - type: string
            - type: 'null'
        description:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        dealer_price:
          anyOf:
            - type: number
            - type: 'null'
        price_public:
          anyOf:
            - $ref: '#/components/schemas/AutoScout24Price'
            - type: 'null'
        price_dealer:
          anyOf:
            - $ref: '#/components/schemas/AutoScout24Price'
            - type: 'null'
        status:
          anyOf:
            - type: string
            - type: 'null'
        leads_range:
          anyOf:
            - type: string
            - type: 'null'
        created_at:
          anyOf:
            - type: string
            - type: 'null'
        whatsapp_number:
          anyOf:
            - type: string
            - type: 'null'
        warranty:
          anyOf:
            - type: string
            - type: 'null'
        warranty_exists:
          type: boolean
          default: false
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        youtube_url:
          anyOf:
            - type: string
            - type: 'null'
        vehicle:
          anyOf:
            - $ref: '#/components/schemas/AutoScout24Vehicle'
            - type: 'null'
        location:
          anyOf:
            - $ref: '#/components/schemas/AutoScout24Location'
            - type: 'null'
        seller:
          anyOf:
            - $ref: '#/components/schemas/AutoScout24Seller'
            - type: 'null'
        ratings:
          anyOf:
            - $ref: '#/components/schemas/AutoScout24Ratings'
            - type: 'null'
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    AutoScout24Price:
      properties:
        '@type':
          type: string
          default: AutoScout24Price
        amount:
          anyOf:
            - type: number
            - type: 'null'
        net_amount:
          anyOf:
            - type: number
            - type: 'null'
        vat_rate:
          anyOf:
            - type: number
            - type: 'null'
        tax_deductible:
          type: boolean
          default: false
        negotiable:
          type: boolean
          default: false
        on_request_only:
          type: boolean
          default: false
      type: object
    AutoScout24Vehicle:
      properties:
        '@type':
          type: string
          default: AutoScout24Vehicle
        make:
          anyOf:
            - type: string
            - type: 'null'
        model:
          anyOf:
            - type: string
            - type: 'null'
        model_group:
          anyOf:
            - type: string
            - type: 'null'
        variant:
          anyOf:
            - type: string
            - type: 'null'
        model_version:
          anyOf:
            - type: string
            - type: 'null'
        make_id:
          anyOf:
            - type: integer
            - type: 'null'
        model_id:
          anyOf:
            - type: integer
            - type: 'null'
        hsn_tsn:
          anyOf:
            - type: string
            - type: 'null'
        body_type:
          anyOf:
            - type: string
            - type: 'null'
        offer_type:
          anyOf:
            - type: string
            - type: 'null'
        mileage_km:
          anyOf:
            - type: integer
            - type: 'null'
        first_registration_date:
          anyOf:
            - type: string
            - type: 'null'
        production_year:
          anyOf:
            - type: integer
            - type: 'null'
        power_kw:
          anyOf:
            - type: integer
            - type: 'null'
        power_hp:
          anyOf:
            - type: integer
            - type: 'null'
        transmission:
          anyOf:
            - type: string
            - type: 'null'
        gears:
          anyOf:
            - type: integer
            - type: 'null'
        cylinders:
          anyOf:
            - type: integer
            - type: 'null'
        drive_train:
          anyOf:
            - type: string
            - type: 'null'
        displacement_cc:
          anyOf:
            - type: integer
            - type: 'null'
        number_of_seats:
          anyOf:
            - type: integer
            - type: 'null'
        number_of_doors:
          anyOf:
            - type: integer
            - type: 'null'
        body_color:
          anyOf:
            - type: string
            - type: 'null'
        manufacturer_color:
          anyOf:
            - type: string
            - type: 'null'
        paint_type:
          anyOf:
            - type: string
            - type: 'null'
        upholstery:
          anyOf:
            - type: string
            - type: 'null'
        upholstery_color:
          anyOf:
            - type: string
            - type: 'null'
        fuel_type:
          anyOf:
            - type: string
            - type: 'null'
        fuel_consumption_combined:
          anyOf:
            - type: number
            - type: 'null'
        co2_emission:
          anyOf:
            - type: number
            - type: 'null'
        emission_class:
          anyOf:
            - type: string
            - type: 'null'
        electric_range_km:
          anyOf:
            - type: number
            - type: 'null'
        weight_kg:
          anyOf:
            - type: integer
            - type: 'null'
        has_full_service_history:
          type: boolean
          default: false
        non_smoking:
          type: boolean
          default: false
        previous_owners:
          anyOf:
            - type: integer
            - type: 'null'
        had_accident:
          anyOf:
            - type: boolean
            - type: 'null'
        new_inspection:
          type: boolean
          default: false
        original_market:
          anyOf:
            - type: string
            - type: 'null'
        legal_categories:
          items:
            type: string
          type: array
          default: []
        equipment:
          items:
            type: string
          type: array
          default: []
      type: object
    AutoScout24Location:
      properties:
        '@type':
          type: string
          default: AutoScout24Location
        country_code:
          anyOf:
            - type: string
            - type: 'null'
        zip:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        street:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
      type: object
    AutoScout24Seller:
      properties:
        '@type':
          type: string
          default: AutoScout24Seller
        id:
          anyOf:
            - type: string
            - type: 'null'
        type:
          anyOf:
            - type: string
            - type: 'null'
        is_dealer:
          type: boolean
          default: false
        company_name:
          anyOf:
            - type: string
            - type: 'null'
        contact_name:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        info_url:
          anyOf:
            - type: string
            - type: 'null'
        culture:
          anyOf:
            - type: string
            - type: 'null'
        phones:
          items:
            type: string
          type: array
          default: []
      type: object
    AutoScout24Ratings:
      properties:
        '@type':
          type: string
          default: AutoScout24Ratings
        rating_count:
          anyOf:
            - type: integer
            - type: 'null'
        stars:
          anyOf:
            - type: number
            - type: 'null'
        recommend_percentage:
          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
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````