search_autocomplete_suggestions
shop.appFetches search autocomplete suggestions from https://shop.app for a query prefix. Returns text query completions and matching shop suggestions with IDs, handles, and review analytics.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_autocomplete_suggestions?
Fetches search autocomplete suggestions from https://shop.app for a query prefix. Returns text query completions and matching shop suggestions with IDs, handles, and review analytics. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query_prefix, first and get the result back without maintaining a scraper.
Response
{
"query_prefix": "<string>",
"requested_limit": 0,
"shop_suggestions": [
{}
],
"query_suggestions": [
"<string>"
],
"shop_suggestion_count": 0,
"query_suggestion_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/75d14864-a6dc-4cf9-8ce6-5883718f8e3e/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "75d14864-a6dc-4cf9-8ce6-5883718f8e3e",
"variables": {
"query_prefix": "bea",
"first": 20
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="75d14864-a6dc-4cf9-8ce6-5883718f8e3e") — the "search_autocomplete_suggestions" function, which fetches search autocomplete suggestions from https://shop.app for a query prefix. Returns text query completions and matching shop suggestions with IDs, handles, and review analytics.. It takes query_prefix (str), first (int). Return the result as structured JSON.