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

# /kijiji/listings

> Get full Kijiji listing details by listing ID (or listing URL): title, description, price, view count, location with coordinates, images, seller info and the category-specific attributes (vehicle make/model/mileage/condition, real estate bedrooms/bathrooms/neighbourhood, and so on).

**Price:** 1 credit

**⚠️ Common errors:** 412: Listing not found (well-formed but nonexistent, expired or removed listing ID)



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/kijiji/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/kijiji/listings:
    post:
      tags:
        - /kijiji
      summary: /kijiji/listings
      description: >-
        Get full Kijiji listing details by listing ID (or listing URL): title,
        description, price, view count, location with coordinates, images,
        seller info and the category-specific attributes (vehicle
        make/model/mileage/condition, real estate
        bedrooms/bathrooms/neighbourhood, and so on).


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Listing not found (well-formed but
        nonexistent, expired or removed listing ID)
      operationId: __api_kijiji_listings_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/KijijiListingsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/KijijiListing'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    KijijiListingsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        listing:
          type: string
          minLength: 1
        locale:
          $ref: '#/components/schemas/KijijiLocale'
          default: en
      type: object
      required:
        - listing
    KijijiListing:
      properties:
        '@type':
          type: string
          default: KijijiListing
        id:
          type: string
        url:
          anyOf:
            - type: string
            - type: 'null'
        listing_type:
          anyOf:
            - type: string
            - type: 'null'
        status:
          anyOf:
            - type: string
            - type: 'null'
        ad_type:
          anyOf:
            - type: string
            - type: 'null'
        ad_source:
          anyOf:
            - type: string
            - type: 'null'
        category_id:
          anyOf:
            - type: integer
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        original_price:
          anyOf:
            - type: number
            - type: 'null'
        msrp:
          anyOf:
            - type: number
            - type: 'null'
        price_type:
          anyOf:
            - type: string
            - type: 'null'
        price_rating:
          anyOf:
            - type: string
            - type: 'null'
        average_market_price:
          anyOf:
            - type: number
            - type: 'null'
        surcharges:
          anyOf:
            - type: string
            - type: 'null'
        view_count:
          anyOf:
            - type: integer
            - type: 'null'
        created_at:
          anyOf:
            - type: integer
            - type: 'null'
        updated_at:
          anyOf:
            - type: integer
            - type: 'null'
        expires_at:
          anyOf:
            - type: integer
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        youtube_video_id:
          anyOf:
            - type: string
            - type: 'null'
        product_url:
          anyOf:
            - type: string
            - type: 'null'
        external_source_id:
          anyOf:
            - type: string
            - type: 'null'
        is_top_ad:
          type: boolean
          default: false
        is_price_drop:
          type: boolean
          default: false
        is_showcase:
          type: boolean
          default: false
        is_highlighted:
          type: boolean
          default: false
        has_category_badge:
          type: boolean
          default: false
        is_from_dealer:
          type: boolean
          default: false
        is_from_autos_dealer:
          type: boolean
          default: false
        is_vertical_category:
          type: boolean
          default: false
        is_financing_available:
          type: boolean
          default: false
        is_trade_in_accepted:
          type: boolean
          default: false
        show_pin_on_map:
          type: boolean
          default: false
        virtual_tour_url:
          anyOf:
            - type: string
            - type: 'null'
        is_mls_ad:
          type: boolean
          default: false
        request_viewing_url:
          anyOf:
            - type: string
            - type: 'null'
        rental_badge:
          anyOf:
            - type: string
            - type: 'null'
        location:
          anyOf:
            - $ref: '#/components/schemas/KijijiListingLocation'
            - type: 'null'
        neighbourhood:
          anyOf:
            - $ref: '#/components/schemas/KijijiNeighbourhood'
            - type: 'null'
        seller:
          anyOf:
            - $ref: '#/components/schemas/KijijiListingSeller'
            - type: 'null'
        mileage_analysis:
          anyOf:
            - $ref: '#/components/schemas/KijijiMileageAnalysis'
            - type: 'null'
        attributes:
          items:
            $ref: '#/components/schemas/KijijiListingAttribute'
          type: array
          default: []
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    KijijiLocale:
      type: string
      enum:
        - en
        - fr
    KijijiListingLocation:
      properties:
        '@type':
          type: string
          default: KijijiListingLocation
        id:
          anyOf:
            - type: integer
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        distance:
          anyOf:
            - type: number
            - type: 'null'
        nearest_intersection:
          anyOf:
            - type: string
            - type: 'null'
        neighbourhood:
          anyOf:
            - type: string
            - type: 'null'
        neighbourhood_id:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    KijijiNeighbourhood:
      properties:
        '@type':
          type: string
          default: KijijiNeighbourhood
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        summary:
          anyOf:
            - type: string
            - type: 'null'
        transportation:
          anyOf:
            - type: string
            - type: 'null'
        scores:
          items:
            $ref: '#/components/schemas/KijijiNeighbourhoodScore'
          type: array
          default: []
      type: object
    KijijiListingSeller:
      properties:
        '@type':
          type: string
          default: KijijiListingSeller
        id:
          anyOf:
            - type: string
            - type: 'null'
        type:
          anyOf:
            - type: string
            - type: 'null'
        website_url:
          anyOf:
            - type: string
            - type: 'null'
        phone_number:
          anyOf:
            - type: string
            - type: 'null'
        verified:
          type: boolean
          default: false
      type: object
    KijijiMileageAnalysis:
      properties:
        '@type':
          type: string
          default: KijijiMileageAnalysis
        usage:
          anyOf:
            - type: string
            - type: 'null'
        value:
          anyOf:
            - type: number
            - type: 'null'
        high:
          anyOf:
            - type: number
            - type: 'null'
        average:
          anyOf:
            - type: number
            - type: 'null'
        low:
          anyOf:
            - type: number
            - type: 'null'
      type: object
    KijijiListingAttribute:
      properties:
        '@type':
          type: string
          default: KijijiListingAttribute
        canonical_name:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        values:
          items:
            type: string
          type: array
          default: []
        canonical_values:
          items:
            type: string
          type: array
          default: []
      type: object
      required:
        - canonical_name
    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
    KijijiNeighbourhoodScore:
      properties:
        '@type':
          type: string
          default: KijijiNeighbourhoodScore
        kind:
          type: string
        score:
          anyOf:
            - type: number
            - type: 'null'
      type: object
      required:
        - kind
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````