> ## Documentation Index
> Fetch the complete documentation index at: https://docs.scrapio.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Get an AutoTrader listing

> Fetch structured detail for a single AutoTrader UK listing by numeric id.



## OpenAPI

````yaml get /v1/autotrader/listing
openapi: 3.1.0
info:
  title: Scrapio
  version: 1.0.0
  description: >-
    Turn any URL into structured data. Fetch raw HTML, crawl sites, extract
    structured content, interact with dynamic pages, and search the web through
    one API.
  contact:
    name: Scrapio Support
    url: https://scrapio.dev
  license:
    name: Proprietary
servers:
  - url: https://api.scrapio.dev
    description: Production
security:
  - bearerAuth: []
tags:
  - name: System
  - name: Fetch
  - name: Crawl
  - name: Map
  - name: Interact
  - name: Search
  - name: Google
  - name: Fast Search
  - name: Jobs
  - name: YouTube
  - name: Amazon
  - name: Walmart
  - name: Booking
  - name: Agoda
  - name: Airbnb
  - name: AutoTrader
  - name: ChatGPT
  - name: Perplexity
  - name: Gemini
  - name: Bing
  - name: Reddit
  - name: TikTok
  - name: Apple App Store
  - name: Target
  - name: Monitors
paths:
  /v1/autotrader/listing:
    get:
      tags:
        - AutoTrader
      summary: Get an AutoTrader UK listing
      description: >-
        Retrieves structured detail for a single AutoTrader UK
        (autotrader.co.uk) listing by numeric id (from a search result URL).
        Backed by the same `autotrader` Web Scraping API target as search.
        Requires a Starter plan or higher.
      operationId: getAutotraderListing
      parameters:
        - name: listing_id
          in: query
          required: true
          schema:
            type: string
            pattern: ^\d+$
        - name: geo
          in: query
          required: false
          schema:
            description: Country to use when submitting the request, e.g. 'gb', 'us', 'de'
            type: string
            minLength: 2
            maxLength: 64
      responses:
        '200':
          description: Structured AutoTrader listing details.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AutotraderListingResponse'
        '400':
          description: Invalid listing parameters.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Missing or invalid API key.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '402':
          description: AutoTrader dedicated endpoints require a Starter plan or higher.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: The requested listing could not be found or parsed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '429':
          description: Daily credit cap exceeded.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '502':
          description: AutoTrader upstream failed or returned an unusable page.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '503':
          description: AutoTrader execution backend unavailable or unconfigured.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      x-codeSamples:
        - lang: cURL
          label: cURL
          source: >-
            curl
            "https://api.scrapio.dev/v1/autotrader/listing?listing_id=202606053030491"
            \
              -H "Authorization: Bearer $SCRAPIO_API_KEY"
components:
  schemas:
    AutotraderListingResponse:
      type: object
      properties:
        provider:
          type: string
          enum:
            - autotrader
        page_type:
          type: string
          enum:
            - listing
        snapshot_at:
          type: string
        listing:
          type: object
          properties:
            id:
              type: string
            url:
              type: string
              format: uri
            title:
              anyOf:
                - type: string
                - type: 'null'
            make:
              anyOf:
                - type: string
                - type: 'null'
            model:
              anyOf:
                - type: string
                - type: 'null'
            trim:
              anyOf:
                - type: string
                - type: 'null'
            year:
              anyOf:
                - type: integer
                  minimum: -9007199254740991
                  maximum: 9007199254740991
                - type: 'null'
            price:
              anyOf:
                - type: number
                - type: 'null'
            price_indicator:
              anyOf:
                - type: string
                - type: 'null'
            mileage:
              anyOf:
                - type: integer
                  minimum: 0
                  maximum: 9007199254740991
                - type: 'null'
            fuel_type:
              anyOf:
                - type: string
                - type: 'null'
            body_type:
              anyOf:
                - type: string
                - type: 'null'
            gearbox:
              anyOf:
                - type: string
                - type: 'null'
            engine_size_litres:
              anyOf:
                - type: number
                - type: 'null'
            doors:
              anyOf:
                - type: integer
                  minimum: 0
                  maximum: 9007199254740991
                - type: 'null'
            seats:
              anyOf:
                - type: integer
                  minimum: 0
                  maximum: 9007199254740991
                - type: 'null'
            body_colour:
              anyOf:
                - type: string
                - type: 'null'
            emission_class:
              anyOf:
                - type: string
                - type: 'null'
            description:
              anyOf:
                - type: string
                - type: 'null'
            location:
              type: object
              properties:
                town:
                  anyOf:
                    - type: string
                    - type: 'null'
                county:
                  anyOf:
                    - type: string
                    - type: 'null'
                postcode:
                  anyOf:
                    - type: string
                    - type: 'null'
                latitude:
                  anyOf:
                    - type: number
                    - type: 'null'
                longitude:
                  anyOf:
                    - type: number
                    - type: 'null'
              required:
                - town
                - county
                - postcode
                - latitude
                - longitude
              additionalProperties: false
            seller:
              type: object
              properties:
                id:
                  anyOf:
                    - type: string
                    - type: 'null'
                name:
                  anyOf:
                    - type: string
                    - type: 'null'
                phone:
                  anyOf:
                    - type: string
                    - type: 'null'
                website:
                  anyOf:
                    - type: string
                      format: uri
                    - type: 'null'
                rating:
                  anyOf:
                    - type: number
                    - type: 'null'
                review_count:
                  anyOf:
                    - type: integer
                      minimum: 0
                      maximum: 9007199254740991
                    - type: 'null'
              required:
                - id
                - name
                - phone
                - website
                - rating
                - review_count
              additionalProperties: false
            images:
              type: array
              items:
                type: string
                format: uri
            vehicle_check_status:
              anyOf:
                - type: string
                - type: 'null'
          required:
            - id
            - url
            - title
            - make
            - model
            - trim
            - year
            - price
            - price_indicator
            - mileage
            - fuel_type
            - body_type
            - gearbox
            - engine_size_litres
            - doors
            - seats
            - body_colour
            - emission_class
            - description
            - location
            - seller
            - images
            - vehicle_check_status
          additionalProperties: false
      required:
        - provider
        - page_type
        - snapshot_at
        - listing
      additionalProperties: false
    ErrorResponse:
      type: object
      properties:
        request_id:
          type: string
        error:
          type: object
          properties:
            code:
              type: string
            message:
              type: string
          required:
            - code
            - message
        diagnostics:
          type: object
          properties:
            outcome:
              type: string
              enum:
                - failed
            retryable:
              type: boolean
            blocked:
              type: boolean
            timed_out:
              type: boolean
          required:
            - outcome
            - retryable
          additionalProperties: false
      required:
        - request_id
        - error
      additionalProperties: false
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key

````