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

# /gumtree/listings

> Get full Gumtree ad details by ad ID (or listing URL): title, price, description, category-specific attributes, location with coordinates, images and seller. Also returns the section-specific extras Gumtree attaches to an ad - vehicle history checks on motor ads, structured salary and employer details on job ads, and the services list plus customer reviews on trade/services ads.

**Price:** 10 credits

**⚠️ Common errors:** 412: Ad not found (well-formed but nonexistent/removed ad ID)



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/gumtree/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/gumtree/listings:
    post:
      tags:
        - /gumtree
      summary: /gumtree/listings
      description: >-
        Get full Gumtree ad details by ad ID (or listing URL): title, price,
        description, category-specific attributes, location with coordinates,
        images and seller. Also returns the section-specific extras Gumtree
        attaches to an ad - vehicle history checks on motor ads, structured
        salary and employer details on job ads, and the services list plus
        customer reviews on trade/services ads.


        **Price:** 10 credits


        **⚠️ Common errors:** 412: Ad not found (well-formed but
        nonexistent/removed ad ID)
      operationId: __api_gumtree_listings_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GumtreeListingsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/GumtreeListing'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    GumtreeListingsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        ad:
          type: string
          minLength: 1
      type: object
      required:
        - ad
    GumtreeListing:
      properties:
        '@type':
          type: string
          default: GumtreeListing
        id:
          type: string
        url:
          type: string
        price:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          type: string
          default: GBP
        city:
          anyOf:
            - type: string
            - type: 'null'
        region:
          anyOf:
            - type: string
            - type: 'null'
        postal_code:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        posted_at:
          anyOf:
            - type: integer
            - type: 'null'
        updated_at:
          anyOf:
            - type: integer
            - type: 'null'
        is_featured:
          type: boolean
          default: false
        is_urgent:
          type: boolean
          default: false
        is_standout:
          type: boolean
          default: false
        is_bumped:
          type: boolean
          default: false
        seller_type:
          anyOf:
            - type: string
            - type: 'null'
        vat_number:
          anyOf:
            - type: string
            - type: 'null'
        attributes:
          additionalProperties:
            type: string
          type: object
          default: {}
        breadcrumbs:
          items:
            type: string
          type: array
          default: []
        category:
          anyOf:
            - type: string
            - type: 'null'
        category_id:
          anyOf:
            - type: string
            - type: 'null'
        department:
          anyOf:
            - type: string
            - type: 'null'
        department_id:
          anyOf:
            - type: string
            - type: 'null'
        website_url:
          anyOf:
            - type: string
            - type: 'null'
        services:
          items:
            type: string
          type: array
          default: []
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        image_count:
          anyOf:
            - type: integer
            - type: 'null'
        videos:
          items:
            type: string
          type: array
          default: []
        seller:
          anyOf:
            - $ref: '#/components/schemas/GumtreeListingSeller'
            - type: 'null'
        vehicle_check:
          anyOf:
            - $ref: '#/components/schemas/GumtreeListingVehicleCheck'
            - type: 'null'
        job:
          anyOf:
            - $ref: '#/components/schemas/GumtreeListingJob'
            - type: 'null'
        reviews:
          items:
            $ref: '#/components/schemas/GumtreeListingReview'
          type: array
          default: []
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    GumtreeListingSeller:
      properties:
        '@type':
          type: string
          default: GumtreeListingSeller
        id:
          anyOf:
            - type: string
            - type: 'null'
        public_id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        type:
          anyOf:
            - type: string
            - type: 'null'
        is_pro:
          type: boolean
          default: false
        is_verified:
          type: boolean
          default: false
        posting_since:
          anyOf:
            - type: string
            - type: 'null'
        posting_since_year:
          anyOf:
            - type: integer
            - type: 'null'
        ad_count:
          anyOf:
            - type: integer
            - type: 'null'
        ads_posted_last_year:
          anyOf:
            - type: integer
            - type: 'null'
        last_active_at:
          anyOf:
            - type: integer
            - type: 'null'
        average_rating:
          anyOf:
            - type: number
            - type: 'null'
        rating_review_count:
          anyOf:
            - type: integer
            - type: 'null'
        phone:
          anyOf:
            - type: string
            - type: 'null'
        profile_url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    GumtreeListingVehicleCheck:
      properties:
        '@type':
          type: string
          default: GumtreeListingVehicleCheck
        is_checked:
          type: boolean
          default: false
        is_extended:
          type: boolean
          default: false
        not_write_off_cat_a_or_b:
          type: boolean
          default: false
        not_write_off_cat_c_or_d:
          type: boolean
          default: false
        not_write_off_cat_s_or_n:
          type: boolean
          default: false
        not_imported:
          type: boolean
          default: false
        original_number_plate:
          type: boolean
          default: false
        original_colour:
          type: boolean
          default: false
      type: object
    GumtreeListingJob:
      properties:
        '@type':
          type: string
          default: GumtreeListingJob
        employer:
          anyOf:
            - type: string
            - type: 'null'
        employment_type:
          anyOf:
            - type: string
            - type: 'null'
        industry:
          anyOf:
            - type: string
            - type: 'null'
        min_salary:
          anyOf:
            - type: number
            - type: 'null'
        max_salary:
          anyOf:
            - type: number
            - type: 'null'
        salary_period:
          anyOf:
            - type: string
            - type: 'null'
        is_remote:
          type: boolean
          default: false
        posted_date:
          anyOf:
            - type: string
            - type: 'null'
        valid_through_date:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    GumtreeListingReview:
      properties:
        '@type':
          type: string
          default: GumtreeListingReview
        reviewer_name:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        text:
          anyOf:
            - type: string
            - type: 'null'
        created_at:
          anyOf:
            - type: integer
            - type: 'null'
        source:
          anyOf:
            - type: string
            - type: 'null'
        is_seller_reply:
          type: boolean
          default: false
      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

````