Marketplace
No threads yet
Live

search_products

amazon.ae

Searches full-text Amazon.ae product listings at https://amazon.ae with pagination, price filtering, sorting, and optional grocery scoping. Returns product prices, ratings, images, URLs, availability, delivery, and offer details exposed by each listing.

Parameters6
Runs20
Updated10d ago
Failing20 runs · 75% 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 search_products?

Searches full-text Amazon.ae product listings at https://amazon.ae with pagination, price filtering, sorting, and optional grocery scoping. Returns product prices, ratings, images, URLs, availability, delivery, and offer details exposed by each listing. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, page, min_price, max_price, sort_order, department and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "query": "<string>",
  "products": [
    {
      "asin": "<string>",
      "price": 0,
      "title": "<string>",
      "badges": [
        "<string>"
      ],
      "rating": 0,
      "currency": "<string>",
      "delivery": [
        "<string>"
      ],
      "is_prime": true,
      "image_url": "<string>",
      "promotion": "<string>",
      "product_url": "<string>",
      "availability": "<string>",
      "is_sponsored": true,
      "rating_count": 0,
      "original_price": 0,
      "bought_recently": "<string>",
      "variation_options": [
        "<string>"
      ]
    }
  ],
  "department": "<string>",
  "sort_order": "<string>",
  "has_next_page": true,
  "results_summary": "<string>",
  "page_product_count": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/f5f4ab34-ef61-49cc-ae33-43a670896d9f/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "f5f4ab34-ef61-49cc-ae33-43a670896d9f",
    "variables": {
        "query": "laptop",
        "page": 1,
        "min_price": 0.0,
        "max_price": 0.0,
        "sort_order": "relevance",
        "department": "all"
    }
}'

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="f5f4ab34-ef61-49cc-ae33-43a670896d9f") — the "search_products" function, which searches full-text Amazon.ae product listings at https://amazon.ae with pagination, price filtering, sorting, and optional grocery scoping. Returns product prices, ratings, images, URLs, availability, delivery, and offer details exposed by each listing..

It takes query (str), page (int), min_price (float), max_price (float), sort_order (str), department (str). Return the result as structured JSON.