obelink.nl APIobelink.nl ↗
Access Obelink.nl product listings, reviews, brands, categories, and deals via a structured API. 8 endpoints covering search, filters, and full product details.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/9ad42432-0013-484a-9a50-f8b68936874d/get_categories' \ -H 'X-API-Key: $PARSE_API_KEY'
Returns a list of top-level product categories available on obelink.nl, extracted from the homepage navigation.
No input parameters required.
{
"type": "object",
"fields": {
"categories": "array of category objects with name, url, and slug"
},
"sample": {
"data": {
"categories": [
{
"url": "https://www.obelink.nl/tenten/",
"name": "Tenten",
"slug": "tenten"
},
{
"url": "https://www.obelink.nl/voortenten/",
"name": "Voortenten",
"slug": "voortenten"
}
]
},
"status": "success"
}
}About the obelink.nl API
The Obelink.nl API exposes 8 endpoints covering the full product catalog of one of the Netherlands' largest camping and outdoor retailers. You can retrieve category trees, paginated product listings, detailed product records with specifications and images, and customer reviews including star-rating breakdowns. The get_product_reviews endpoint returns per-review fields like verifiedBuyer, isRecommended, ratingVotes, and image attachments — detail not commonly available from generic product feeds.
Product Catalog and Search
The get_products_by_category endpoint accepts a category_url path (e.g. /tenten/4-persoons-tenten/) and returns paginated product objects including name, price, currency, availability, rating, and review_count. Pagination is handled via an integer page parameter, and an optional sort parameter controls listing order. The search_products endpoint accepts a query string and handles Obelink's behavior of redirecting common searches to matching category or brand pages — the response includes a redirected_to field when this happens, along with the matched products and a total_results count.
Product Details and Reviews
get_product_details returns a full record for a single product by product_url, including sku, brand, images array, description, product_id, and rating. The get_product_reviews endpoint goes further, fetching paginated customer reviews for a product with fields per review item: createdAt, title, detail, nickName, ratingVotes, verifiedBuyer, isRecommended, and attached images. Summary-level fields include totalRecords, ratingSummaryValue, recommendedPercent, and a detailedSummary object with counts broken down by star tier (one through five).
Categories, Brands, Filters, and Deals
get_categories returns top-level navigation categories with name, url, and slug. get_brands returns the same shape for the full brand list from the /merken/ page. get_category_filters accepts a category_url and returns subcategories, usage_tags, sort_options, and total_results — useful for building drill-down navigation or enumerating filterable attributes before fetching products. get_deals_promotions returns currently active promotions from the /acties/ page, including product price, availability, and review_count for each deal item.
- Track price and availability changes for camping tents and sleeping bags across Obelink's catalog.
- Aggregate customer review sentiment using
verifiedBuyer,isRecommended, and star-tier counts fromget_product_reviews. - Build a brand-specific product feed by combining
get_brandswithget_products_by_categoryfor each brand page. - Monitor active promotional offers via
get_deals_promotionsto alert users when specific product categories go on sale. - Enumerate subcategories and usage tags with
get_category_filtersto power faceted navigation in a comparison tool. - Seed a product database with SKUs, descriptions, and images using
get_product_detailsfor individual items. - Cross-reference search redirect behavior to map common Dutch outdoor product queries to their canonical category pages.
| 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 Obelink.nl have an official developer API?+
What does `search_products` return when a query redirects to a category page?+
redirected_to field containing the resolved URL. If the redirect lands on a parent category overview with no direct product listings, the products array will be empty. You can use the page parameter to paginate through redirected results the same way as a direct category query.Does `get_product_details` return stock levels or size/variant options?+
availability as a field and includes price, sku, images, and description, but does not currently expose individual variant SKUs, size options, or per-variant stock counts. The API covers single-product records at the top-level. You can fork it on Parse and revise to add variant-level data if the product page exposes it.Can I retrieve products from a top-level parent category directly?+
get_products_by_category and get_category_filters work best with leaf categories that have direct product listings (e.g. /tenten/4-persoons-tenten/). Passing a top-level parent category URL typically returns subcategories but no products, and total_results may be null. Use get_category_filters first to identify leaf subcategory URLs before calling the product listing endpoint.Are product specifications or technical attributes returned by any endpoint?+
get_product_details endpoint returns a description field and structured fields like brand, sku, and images, but tabular specification attributes (e.g. weight, dimensions, material) are not currently exposed as structured fields. You can fork this API on Parse and revise it to parse and return those specification tables from the product page.