kupujemprodajem.com APIkupujemprodajem.com ↗
Access listings, seller profiles, categories, and keyword search from kupujemprodajem.com via 6 structured endpoints. Get ad details, prices, and review counts.
curl -X GET 'https://api.parse.bot/scraper/155083df-03b9-477e-b05b-381ef0622b15/search_laptop_listings?page=1&sort=date' \ -H 'X-API-Key: $PARSE_API_KEY'
Search for laptop listings in the Laptops category (categoryId=1221, groupId=101) with support for pagination and sorting. Returns paginated results with ad summaries.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number for pagination. |
| sort | string | Sorting order. Accepted values: 'date', 'price_asc', 'price_desc', 'popular'. |
{
"type": "object",
"fields": {
"results": "object containing ads array, total count, page, and pages",
"success": "boolean indicating API success"
},
"sample": {
"data": {
"errors": [],
"results": {
"ads": [
{
"name": "HP EliteBook i7-6500u/16GB/256GB NVMe/BAT. 4H/FHD IPS",
"ad_id": 141265102,
"price": 199,
"user_id": 651336,
"currency": "eur",
"condition": "used",
"location_name": "Beograd"
}
],
"page": 1,
"pages": 869,
"total": 26041
},
"success": true
},
"status": "success"
}
}About the kupujemprodajem.com API
This API covers kupujemprodajem.com — one of the largest classifieds marketplaces in the Western Balkans — across 6 endpoints. You can search listings by keyword or browse the laptop category directly with search_laptop_listings, pull full ad details including photos, description, and price via get_listing_detail, and retrieve seller profiles with positive/negative review counts and member-since dates.
Listings and Search
search_listings_by_keyword accepts a keywords string plus an optional category_id to scope results and a page integer for pagination. It returns an ads array alongside total, pages, and page fields. search_laptop_listings is a pre-scoped variant fixed to categoryId 1221 (Laptops) and accepts the same page parameter plus a sort value — date, price_asc, price_desc, or popular — letting you order results without building category parameters manually.
Ad Detail and Seller Data
get_listing_detail takes a numeric ad_id and returns an info object with the listing's name, price, description, photos array, and nested user info. get_seller_profile takes a numeric user_id and returns name, location_name, reviews_positive, reviews_negative, created date, and the count of active ads. get_seller_ads retrieves all active listings for a given seller with the same paginated ads structure; note that some sellers configure their accounts to hide listings publicly, in which case the endpoint returns an error rather than an empty array.
Category Tree
get_categories returns the site's category hierarchy. Called without arguments it returns all top-level categories with id and name. Passing a top-level category_id — such as 969 for Tools or 1221 for Computers/Laptops — returns the sub-groups within that category. Passing a leaf-level group ID returns an empty result, so always start with the no-argument call to identify valid top-level IDs before drilling down.
- Track price trends for used laptops by paginating
search_laptop_listingssorted byprice_ascover time. - Build a seller reputation checker by combining
get_seller_profilereview fields with their active ad count. - Monitor new listings for a search term by polling
search_listings_by_keywordsorted by date and comparingtotalcounts. - Aggregate ad photos and descriptions from
get_listing_detailto populate a product comparison tool. - Map active sellers by
location_namefromget_seller_profileto visualize regional supply for a category. - Discover available sub-categories under a vertical using
get_categoriesto drive dynamic category navigation in an app. - Cross-reference a seller's
reviews_positiveandreviews_negativecounts with their current listings to flag low-trust accounts.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does kupujemprodajem.com have an official public developer API?+
What does `get_listing_detail` return beyond the price?+
info object for a single ad: name, price, description, a photos array of image URLs, seller (user info) data, and ad metadata such as status and timestamps. You need the numeric ad_id, which you can obtain from any search or category endpoint's ads array.Can I search categories other than Laptops using the category endpoints?+
get_categories without arguments to retrieve all top-level categories and their IDs, then pass a top-level category_id to search_listings_by_keyword to scope keyword results to that vertical. The dedicated search_laptop_listings endpoint is fixed to category 1221 and cannot be redirected to other categories. You can fork this API on Parse and revise it to add a general category-scoped search endpoint for any category ID.Are sold or expired listings accessible through the API?+
search_laptop_listings, search_listings_by_keyword, and get_seller_ads — return active ads only. Historical or archived listings are not exposed. You can fork this API on Parse and revise it to add an endpoint targeting archived ad pages if that data is available on the site.What happens when a seller has disabled public listing visibility in `get_seller_ads`?+
ads array. This is a per-seller account setting on kupujemprodajem.com that cannot be overridden. You can still retrieve that seller's public profile fields — name, location, review counts, member-since date — via get_seller_profile.