Live
get_laptop_details
shop.inrego.seReturns full refurbished laptop details from https://shop.inrego.se, including current price, condition, live stock, images, description and all technical specifications.
Parameters1
Runs9
Updated3d ago
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_laptop_details?
Returns full refurbished laptop details from https://shop.inrego.se, including current price, condition, live stock, images, description and all technical specifications. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass slug and get the result back without maintaining a scraper.
Response
{
"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>"
],
"image_urls": [
"<string>"
],
"product_id": 0,
"description": "<string>",
"availability": "<string>",
"oversellable": true,
"stock_status": "<string>",
"vat_included": true,
"delivery_time": "<string>",
"item_condition": "<string>",
"specifications": [
{
"name": "<string>",
"value": "<string>"
}
],
"discount_percent": 0,
"image_disclaimer": "<string>",
"promotion_labels": [
"<string>"
],
"price_valid_until": "<string>",
"available_quantity": 0,
"original_price_sek": 0,
"climate_saving_kg_co2e": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/5a4a36ea-0009-4806-9626-879cfd0f07d9/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "5a4a36ea-0009-4806-9626-879cfd0f07d9",
"variables": {
"slug": "dell-latitude-7320-20"
}
}'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="5a4a36ea-0009-4806-9626-879cfd0f07d9") — the "get_laptop_details" function, which returns full refurbished laptop details from https://shop.inrego.se, including current price, condition, live stock, images, description and all technical specifications.. It takes slug (str). Return the result as structured JSON.