Marketplace
No threads yet
Live

get_search_suggestions

amazon.se

Returns keyword autocomplete suggestions displayed by the search bar on https://amazon.se for a query prefix, including source ranking metadata.

Parameters2
Runs5
Updated5h ago
Degraded5 runs · 60% 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_search_suggestions?

Returns keyword autocomplete suggestions displayed by the search bar on https://amazon.se for a query prefix, including source ranking metadata. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass prefix, limit and get the result back without maintaining a scraper.

Response

{
  "alias": "<string>",
  "count": 0,
  "prefix": "<string>",
  "shuffled": true,
  "suggestions": [
    {
      "help": true,
      "type": "<string>",
      "ghost": true,
      "prior": 0,
      "keyword": "<string>",
      "suggestion_kind": "<string>",
      "candidate_source": "<string>",
      "ranking_strategy": "<string>",
      "ranking_strategy_type": "<string>"
    }
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/eef281fe-7855-485b-9f73-a8089b90f38f/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "eef281fe-7855-485b-9f73-a8089b90f38f",
    "variables": {
        "prefix": "lapt",
        "limit": 10
    }
}'

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="eef281fe-7855-485b-9f73-a8089b90f38f") — the "get_search_suggestions" function, which returns keyword autocomplete suggestions displayed by the search bar on https://amazon.se for a query prefix, including source ranking metadata..

It takes prefix (str), limit (int). Return the result as structured JSON.