list_refurbished_desktops
shop.inrego.seLists refurbished desktop and stationary computer products from https://shop.inrego.se with prices, basic specs, stock status, and product slugs. Supports offset pagination using the store's default bestseller ordering.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_refurbished_desktops?
Lists refurbished desktop and stationary computer products from https://shop.inrego.se with prices, basic specs, stock status, and product slugs. Supports offset pagination using the store's default bestseller ordering. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass offset and get the result back without maintaining a scraper.
Response
{
"sort": "<string>",
"offset": 0,
"products": [
{
"sku": "<string>",
"url": "<string>",
"name": "<string>",
"slug": "<string>",
"brand": "<string>",
"item_id": 0,
"tax_sek": 0,
"category": "<string>",
"currency": "<string>",
"in_stock": true,
"condition": "<string>",
"image_url": "<string>",
"price_sek": 0,
"highlights": [
"<string>"
],
"product_id": 0,
"stock_status": "<string>",
"vat_included": true,
"specifications": [
"<string>"
],
"discount_percent": 0,
"promotion_badges": [
"<string>"
],
"original_price_sek": 0,
"urgency_label_displayed": true
}
],
"page_size": 0,
"source_url": "<string>",
"next_offset": 0,
"returned_count": 0,
"total_products": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/d21deec9-df3e-44cf-8bb1-d7d76c3c1e87/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "d21deec9-df3e-44cf-8bb1-d7d76c3c1e87",
"variables": {
"offset": 0
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="d21deec9-df3e-44cf-8bb1-d7d76c3c1e87") — the "list_refurbished_desktops" function, which lists refurbished desktop and stationary computer products from https://shop.inrego.se with prices, basic specs, stock status, and product slugs. Supports offset pagination using the store's default bestseller ordering.. It takes offset (int). Return the result as structured JSON.