Inrego APIshop.inrego.se ↗
Browse Inrego's refurbished laptop inventory and retrieve detailed product information including prices, specifications, and real-time availability from their Swedish e-commerce store. Find the perfect refurbished laptop by comparing models, specs, and current stock status all in one place.
curl -X GET 'https://api.parse.bot/scraper/79106d7e-a571-483b-96f4-aa1465fb654e/list_laptops?offset=0' \ -H 'X-API-Key: $PARSE_API_KEY'
List refurbished laptop products with prices and basic specs. Returns ~33 products per page, paginated by offset. Use offset 0 for the first page, 33 for the second, etc. Products are sorted by bestsellers by default. Each product includes a slug that can be used with get_laptop_details for full specifications.
| Param | Type | Description |
|---|---|---|
| offset | integer | Pagination offset. Each page returns ~33 products. Use 0 for first page, 33 for second, 66 for third, etc. |
{
"type": "object",
"fields": {
"count": "number of products returned in this page",
"offset": "the offset used for this request",
"products": "array of laptop listing summaries with id, name, brand, slug, price, condition, stock, screen_size, and specs"
},
"sample": {
"data": {
"count": 33,
"offset": 0,
"products": [
{
"id": "11001025031",
"name": "HP ELITEBOOK 840 G6",
"slug": "hp-elitebook-840-g6-26",
"brand": "HP",
"price": 3749,
"currency": "SEK",
"features": [],
"in_stock": true,
"url_path": "/barbara/hp-elitebook-840-g6-26",
"condition": "Mycket bra skick",
"screen_size": "14.0\"",
"stock_status": "Färre än 10 kvar i lager",
"specs_summary": [
"INTEL CORE I5-8265U 1.6 GHz",
"16 GB",
"240 GB SSD"
]
}
]
},
"status": "success"
}
}About the Inrego API
The Inrego API on Parse exposes 2 endpoints for the publicly available data on shop.inrego.se. Calls return JSON over HTTPS and are billed per successful response.
Pin a release with the API-Snapshot-Version header so canonical updates don't silently change your contract.