Live
search_autocomplete_suggestions
autosug.ebay.comReturns up to 10 popular autocomplete search terms for a keyword from https://ebay.ca, including each suggestion type and destination type.
Parameters2
Runs5
Updated3d ago
Operational5 runs · 100% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_autocomplete_suggestions?
Returns up to 10 popular autocomplete search terms for a keyword from https://ebay.ca, including each suggestion type and destination type. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass keyword, limit and get the result back without maintaining a scraper.
Response
{
"count": 0,
"keyword": "<string>",
"suggestions": [
{
"term": "<string>",
"direct_type": "<string>",
"suggestion_type": "<string>"
}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/786bcd1b-21d0-4c01-b475-45c2c4b2d9a0/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "786bcd1b-21d0-4c01-b475-45c2c4b2d9a0",
"variables": {
"keyword": "laptop",
"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="786bcd1b-21d0-4c01-b475-45c2c4b2d9a0") — the "search_autocomplete_suggestions" function, which returns up to 10 popular autocomplete search terms for a keyword from https://ebay.ca, including each suggestion type and destination type.. It takes keyword (str), limit (int). Return the result as structured JSON.