Marketplace
No threads yet
Live

list_refurbished_laptops

shop.inrego.se

Lists refurbished laptops from https://shop.inrego.se with prices, basic specifications, product slugs, and live stock status. Results use the store's default bestseller order and support offset pagination.

Parameters1
Runs15
Updated10d ago
Degraded15 runs · 93.3% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is list_refurbished_laptops?

Lists refurbished laptops from https://shop.inrego.se with prices, basic specifications, product slugs, and live stock status. Results use the store's default bestseller order and support offset pagination. 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_labels": [
        "<string>"
      ],
      "original_price_sek": 0,
      "secondary_image_url": "<string>"
    }
  ],
  "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/1fe75632-015b-40dc-8915-d449a3b5127f/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "1fe75632-015b-40dc-8915-d449a3b5127f",
    "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.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="1fe75632-015b-40dc-8915-d449a3b5127f") — the "list_refurbished_laptops" function, which lists refurbished laptops from https://shop.inrego.se with prices, basic specifications, product slugs, and live stock status. Results use the store's default bestseller order and support offset pagination..

It takes offset (int). Return the result as structured JSON.