Marketplace
No threads yet
Live

list_refurbished_tablets

shop.inrego.se

Lists refurbished tablet 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.

Parameters1
Runs10
Updated8d ago
Operational10 runs · 100% 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_tablets?

Lists refurbished tablet 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/ef64990a-c331-42f8-9452-57183c8eb072/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "ef64990a-c331-42f8-9452-57183c8eb072",
    "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="ef64990a-c331-42f8-9452-57183c8eb072") — the "list_refurbished_tablets" function, which lists refurbished tablet 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.