search_suggestions
wordreference.comSearches https://wordreference.com autocomplete suggestions and returns matching terms with language codes, occurrence counts, verb flags, and available transliterations, ordered by frequency.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_suggestions?
Searches https://wordreference.com autocomplete suggestions and returns matching terms with language codes, occurrence counts, verb flags, and available transliterations, ordered by frequency. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, dictionary, limit and get the result back without maintaining a scraper.
Response
{
"query": "<string>",
"dictionary": "<string>",
"suggestions": [
{}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/4a713e32-883c-4436-8f88-5def8aa084e6/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "4a713e32-883c-4436-8f88-5def8aa084e6",
"variables": {
"query": "hous",
"dictionary": "enes",
"limit": 15
}
}'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="4a713e32-883c-4436-8f88-5def8aa084e6") — the "search_suggestions" function, which searches https://wordreference.com autocomplete suggestions and returns matching terms with language codes, occurrence counts, verb flags, and available transliterations, ordered by frequency.. It takes query (str), dictionary (str), limit (int). Return the result as structured JSON.