Marketplace
No threads yet
Live

get_product_details

amazon.se

Retrieves https://amazon.se product details by ASIN, including prices, ratings, availability, features, specifications, variants, high-resolution images, and Renewed condition data.

Parameters1
Runs3
Updated6h ago
Operational3 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 get_product_details?

Retrieves https://amazon.se product details by ASIN, including prices, ratings, availability, features, specifications, variants, high-resolution images, and Renewed condition data. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass asin and get the result back without maintaining a scraper.

Response

{
  "product": {
    "asin": "<string>",
    "brand": "<string>",
    "price": "<string>",
    "title": "<string>",
    "rating": 0,
    "discount": "<string>",
    "features": [
      "<string>"
    ],
    "overview": {},
    "subtitle": "<string>",
    "variants": [
      {
        "name": "<string>",
        "values": [
          {
            "asin": "<string>",
            "label": "<string>",
            "state": "<string>",
            "selected": true,
            "image_url": "<string>",
            "product_url": "<string>"
          }
        ]
      }
    ],
    "list_price": "<string>",
    "product_url": "<string>",
    "availability": "<string>",
    "review_count": 0,
    "product_details": {},
    "renewed_condition": {
      "tier": "<string>",
      "condition": "<string>",
      "description": "<string>"
    },
    "high_resolution_images": [
      "<string>"
    ]
  },
  "full_details": true,
  "retrieval_method": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/5d3f340a-2a58-40df-8bd6-226086013d37/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "5d3f340a-2a58-40df-8bd6-226086013d37",
    "variables": {
        "asin": "B0CRTR3PMF"
    }
}'

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="5d3f340a-2a58-40df-8bd6-226086013d37") — the "get_product_details" function, which retrieves https://amazon.se product details by ASIN, including prices, ratings, availability, features, specifications, variants, high-resolution images, and Renewed condition data..

It takes asin (str). Return the result as structured JSON.