Inrego APIshop.inrego.se ↗
Access refurbished laptop, phone, tablet, and desktop listings from Inrego's Swedish store. Prices in SEK, specs, condition grades, and stock status.
What is the Inrego API?
The Inrego Shop API exposes 8 endpoints covering refurbished laptops, phones, tablets, and desktops listed on shop.inrego.se. Each category has a paginated listing endpoint and a detail endpoint — for example, get_laptop_details returns full specifications, price in SEK including VAT, condition grade, image URL, and real-time availability for a single product identified by its slug from list_laptops.
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
What the API Covers
The API covers four product categories on Inrego's Swedish refurbished electronics store: laptops, mobile phones, tablets, and desktop computers. For each category there are two endpoints — a listing endpoint (e.g. list_laptops, list_phones) and a detail endpoint (e.g. get_laptop_details, get_phone_details). All prices are denominated in SEK and include VAT. The listing endpoints are paginated using an offset parameter; each page returns approximately 33 products sorted by bestsellers by default.
Listing Endpoints
Calling list_laptops, list_phones, list_tablets, or list_desktops returns a page of product summaries including id, name, brand, slug, price, condition, and stock status. The slug field is the key to retrieving full details — pass it directly to the corresponding detail endpoint. Increment offset by 33 to walk through additional pages; the count field in the response tells you how many products were returned in the current page.
Detail Endpoints
The detail endpoints (get_laptop_details, get_phone_details, get_tablet_details, get_desktop_details) return a full product record. Common fields across all four include name, brand, price, currency, condition, image_url, availability, and article_number. The specifications object contains hardware-level detail that varies by category: laptops and desktops include processor, RAM, storage, ports, and physical dimensions; phones and tablets add camera and model identifiers. All detail calls require a slug obtained from the matching list endpoint.
Source and Scope
Inrego is a Swedish company specializing in certified refurbished IT hardware, primarily for the business and public sector market. The API covers their consumer-facing e-commerce shop at shop.inrego.se. Coverage is limited to products actively listed on that storefront; historical listings, sold-out archive products, and B2B contract pricing are not included.
The Inrego API is a managed, monitored endpoint for shop.inrego.se — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when shop.inrego.se changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.
This isn't an official shop.inrego.se API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.
Will this API break when the source site changes?+
Is this an official API from the source site?+
Can I fix or extend this API myself if I need a new endpoint or field?+
What happens if I call an endpoint that has an issue?+
- Build a refurbished laptop price tracker that alerts when specific models drop below a target SEK price using
list_laptopsandget_laptop_details. - Aggregate condition grades across all four categories to compare Inrego's grading distribution against other refurbishers.
- Populate a product comparison tool with full hardware specs from
get_laptop_detailsorget_desktop_detailsfor side-by-side configuration reviews. - Monitor stock availability across refurbished iPhone and Android models using
list_phonesandget_phone_detailsto catch restocks. - Extract article numbers from detail endpoints to cross-reference Inrego SKUs with internal procurement or asset management systems.
- Feed refurbished tablet listings into a sustainability-focused shopping app that surfaces certified second-hand alternatives to new devices.
- Snapshot Inrego's full catalog periodically using paginated
list_*endpoints to build a price-history dataset for refurbished hardware trends in Sweden.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 200 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 100 req/min |
| Team | $300/mo | 20,000 | 300 req/min |
| Company | $1,000/mo | 100,000 | 500 req/min |
Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does Inrego provide an official developer API?+
How does pagination work across the listing endpoints?+
list_laptops, list_phones, list_tablets, list_desktops) accept an integer offset parameter. Each page returns approximately 33 products. Pass offset=0 for the first page, offset=33 for the second, offset=66 for the third, and so on. The count field in each response indicates how many products were actually returned, which will be less than 33 on the final page.Does the API cover accessories, monitors, or other product categories beyond laptops, phones, tablets, and desktops?+
What condition grading information is returned, and does the API explain what each grade means?+
condition field containing the grade label as it appears on the Inrego listing (e.g. a grade string like 'Grade A'). The API returns the label but does not include a separate field with a textual description of what each grade entails. You can fork this API on Parse and revise it to include a condition-description lookup if needed.Can I filter listing results by brand, price range, or specification values?+
offset parameter for pagination; server-side filtering by brand, price, or spec is not currently supported. Products are returned sorted by bestsellers by default. To filter, retrieve pages and apply logic client-side against the brand, price, and specs fields returned in each listing summary. You can fork this API on Parse and revise it to add filter parameters if the underlying category pages support them.