reebelo.com APIreebelo.com ↗
Access Reebelo's refurbished electronics marketplace via API. Get product listings, condition-based pricing, reviews, deals, and category data across 10 endpoints.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/48e11213-78fe-4e93-9849-f38d9b796c07/get_all_categories' \ -H 'X-API-Key: $PARSE_API_KEY'
Retrieve all top-level and sub-categories available on Reebelo, including nested children and category PKs for use with other endpoints.
No input parameters required.
{
"type": "object",
"fields": {
"menu": "array of category objects with name, pk, and nested children"
},
"sample": {
"data": {
"menu": [
{
"pk": "02q0v5s710k7",
"name": "Electronics",
"children": [
{
"pk": "05t394s0h4e1",
"name": "Laptops",
"parent": "02q0v5s710k7",
"children": []
}
]
}
]
},
"status": "success"
}
}About the reebelo.com API
The Reebelo API covers 10 endpoints that expose product listings, pricing by condition, customer reviews, deals, and category taxonomy from Reebelo's refurbished electronics marketplace. The get_product_detail endpoint returns full product specifications, FAQ content, and all SKU variants for a given device slug, while get_condition_prices_for_product maps every storage and color combination to its best price per condition.
Categories, Search, and Listings
Start with get_all_categories to retrieve the full category tree, including nested children and the pk values used to filter get_product_listing. That listing endpoint accepts category_pk, limit, and offset for paginated browsing of SKU items, each carrying id, title, offers, and product metadata. For keyword-driven lookups, search_products accepts a query string and returns matching offers (with title, price, handle, and image) alongside related collections.
Product Detail and Pricing
get_product_detail takes a product slug and returns a full product object: name, description, psku, brand, category, images, specifications, features, faq, and an array of SKU variants. To retrieve or monitor pricing independently, get_sku_price accepts either a psku prefix or a specific sku_id and returns SKU objects including compareAtPrice and vendor-level offer details. For a condensed condition-to-price map across all storage and color variants of a device, get_condition_prices_for_product takes a psku and returns keys formatted as 'storage | color' with condition names mapped to dollar prices.
Brands, Deals, and Reviews
get_category_brands returns all brands for a given category or collection slug, with each brand entry including id, name, and offerCount. That brand_id feeds directly into get_collection_by_brand for paginated brand-filtered product results. get_deals requires no inputs and returns current sale items with compareAtPrice, offer details, and filter options covering categories, brands, and priceRange. Customer sentiment is accessible through get_product_reviews, which takes a review_hash and returns individual review objects (customerName, stars, title, text, createdAt, productName, condition) alongside a summary with average rating and star-percentage distribution.
- Track condition-based price changes for specific iPhone or MacBook models using
get_condition_prices_for_productwith apsku. - Build a refurbished device comparison tool by pulling full specs and variant pricing from
get_product_detail. - Aggregate current deals inventory with
get_dealsto surface discounted refurbished electronics in a deals feed. - Populate a brand directory for refurbished electronics by listing brands and offer counts via
get_category_brands. - Monitor review sentiment for a device or vendor by fetching ratings summaries and individual reviews through
get_product_reviews. - Implement category-level browsing in an e-commerce app using the nested category tree from
get_all_categoriesand paginated listings fromget_product_listing. - Power search autocomplete and collection discovery by querying
search_productswith a keyword and reading the returnedoffersandcollections.
| 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 Reebelo have an official public developer API?+
What does `get_product_reviews` return, and how do I find the correct `review_hash`?+
id, customerName, stars, title, text, createdAt, productName, and condition — plus a summary object containing the total count, average stars, maxRating, minRating, and per-star percentages. The review_hash is a string found in vendor or product page data returned by other endpoints such as get_product_detail.Can I retrieve seller or vendor profile pages through this API?+
How does pagination work in `get_product_listing` and `get_collection_by_brand`?+
limit (max results per page) and offset (starting position) as optional integer parameters. Each response includes a total integer representing the full result count for that query, which you can use to calculate how many pages to iterate through.