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

# /marktplaats/listings

> Get full Marktplaats listing details by listing ID (or listing URL): title, price, description, category attributes, images, delivery and shipping options, bids, view and favorite counts, and seller information. Works across marktplaats.nl, 2dehands.be and 2ememain.be.

**Price:** 5 credits

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



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/marktplaats/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/marktplaats/listings:
    post:
      tags:
        - /marktplaats
      summary: /marktplaats/listings
      description: >-
        Get full Marktplaats listing details by listing ID (or listing URL):
        title, price, description, category attributes, images, delivery and
        shipping options, bids, view and favorite counts, and seller
        information. Works across marktplaats.nl, 2dehands.be and 2ememain.be.


        **Price:** 5 credits


        **⚠️ Common errors:** 412: Listing not found (well-formed but
        nonexistent or removed listing ID)
      operationId: __api_marktplaats_listings_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MarktplaatsListingsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/MarktplaatsListing'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    MarktplaatsListingsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        domain:
          $ref: '#/components/schemas/MarktplaatsDomain'
          default: marktplaats.nl
        listing:
          type: string
          minLength: 1
      type: object
      required:
        - listing
    MarktplaatsListing:
      properties:
        '@type':
          type: string
          default: MarktplaatsListing
        id:
          type: string
        url:
          type: string
        listing_title:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          type: string
          default: EUR
        price_type:
          anyOf:
            - type: string
            - type: 'null'
        ad_type:
          anyOf:
            - type: string
            - type: 'null'
        view_count:
          anyOf:
            - type: integer
            - type: 'null'
        favorite_count:
          anyOf:
            - type: integer
            - type: 'null'
        created_at:
          anyOf:
            - type: integer
            - type: 'null'
        category_id:
          anyOf:
            - type: integer
            - type: 'null'
        category:
          anyOf:
            - type: string
            - type: 'null'
        category_full_name:
          anyOf:
            - type: string
            - type: 'null'
        parent_category_id:
          anyOf:
            - type: integer
            - type: 'null'
        parent_category:
          anyOf:
            - type: string
            - type: 'null'
        attributes:
          additionalProperties:
            type: string
          type: object
          default: {}
        traits:
          items:
            type: string
          type: array
          default: []
        delivery:
          anyOf:
            - type: string
            - type: 'null'
        shipping_options:
          items:
            $ref: '#/components/schemas/MarktplaatsListingShippingOption'
          type: array
          default: []
        is_bidding_enabled:
          type: boolean
          default: false
        minimum_bid:
          anyOf:
            - type: number
            - type: 'null'
        bids:
          items:
            $ref: '#/components/schemas/MarktplaatsListingBid'
          type: array
          default: []
        is_reserved:
          type: boolean
          default: false
        is_closed:
          type: boolean
          default: false
        is_buy_now_enabled:
          type: boolean
          default: false
        average_co2_kg:
          anyOf:
            - type: number
            - type: 'null'
        highlights:
          items:
            type: string
          type: array
          default: []
        car:
          anyOf:
            - $ref: '#/components/schemas/MarktplaatsListingCar'
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        seller:
          anyOf:
            - $ref: '#/components/schemas/MarktplaatsListingSeller'
            - type: 'null'
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    MarktplaatsDomain:
      type: string
      enum:
        - marktplaats.nl
        - 2dehands.be
        - 2ememain.be
    MarktplaatsListingShippingOption:
      properties:
        '@type':
          type: string
          default: MarktplaatsListingShippingOption
        carrier:
          anyOf:
            - type: string
            - type: 'null'
        label:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: string
            - type: 'null'
        delivery_method:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    MarktplaatsListingBid:
      properties:
        '@type':
          type: string
          default: MarktplaatsListingBid
        id:
          anyOf:
            - type: integer
            - type: 'null'
        amount:
          anyOf:
            - type: number
            - type: 'null'
        created_at:
          anyOf:
            - type: integer
            - type: 'null'
        bidder_id:
          anyOf:
            - type: integer
            - type: 'null'
        bidder_name:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    MarktplaatsListingCar:
      properties:
        '@type':
          type: string
          default: MarktplaatsListingCar
        brand:
          anyOf:
            - type: string
            - type: 'null'
        model:
          anyOf:
            - type: string
            - type: 'null'
        condition:
          anyOf:
            - type: string
            - type: 'null'
        construction_year:
          anyOf:
            - type: string
            - type: 'null'
        license_plate:
          anyOf:
            - type: string
            - type: 'null'
        has_nap_status:
          type: boolean
          default: false
        quality_marks:
          items:
            type: string
          type: array
          default: []
      type: object
    MarktplaatsListingSeller:
      properties:
        '@type':
          type: string
          default: MarktplaatsListingSeller
        id:
          anyOf:
            - type: integer
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        type:
          anyOf:
            - type: string
            - type: 'null'
        active_years:
          anyOf:
            - type: integer
            - type: 'null'
        active_since:
          anyOf:
            - type: string
            - type: 'null'
        profile_url:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        country:
          anyOf:
            - type: string
            - type: 'null'
        country_code:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        is_phone_hidden:
          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

````