Skip to main content
POST
/
api
/
kleinanzeigen
/
listings
/kleinanzeigen/listings
curl --request POST \
  --url https://api.anysite.io/api/kleinanzeigen/listings \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "ad": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "url": "<string>",
    "@type": "@kleinanzeigen_listing",
    "title": "<string>",
    "price": 123,
    "currency": "EUR",
    "old_price": 123,
    "is_negotiable": false,
    "is_free": false,
    "is_top_ad": false,
    "is_sold": false,
    "shipping": "<string>",
    "description": "<string>",
    "postal_code": "<string>",
    "state": "<string>",
    "city": "<string>",
    "posted_at": "<string>",
    "attributes": {},
    "breadcrumbs": [],
    "category": "<string>",
    "category_id": "<string>",
    "image": "<string>",
    "images": [],
    "seller": {
      "@type": "@kleinanzeigen_listing_seller",
      "id": "<string>",
      "name": "<string>",
      "type": "<string>",
      "active_since": "<string>",
      "active_ad_count": 123,
      "average_rating": 123,
      "rating_review_count": 123,
      "profile_url": "<string>"
    }
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
ad
string
required

Kleinanzeigen ad ID or a listing URL containing it

Minimum string length: 1
Examples:

"3430224747"

"https://www.kleinanzeigen.de/s-anzeige/title/3430224747-217-3151"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
url
string
required
@type
string
default:@kleinanzeigen_listing
title
string | null
price
number | null
currency
string
default:EUR
old_price
number | null
is_negotiable
boolean
default:false
is_free
boolean
default:false
is_top_ad
boolean
default:false
is_sold
boolean
default:false
shipping
string | null
description
string | null
postal_code
string | null
state
string | null
city
string | null
posted_at
string | null
attributes
Attributes · object
breadcrumbs
string[]
category
string | null
category_id
string | null
image
string | null
images
string[]
seller
KleinanzeigenListingSeller · object