get_vocabulary_list
wordreference.comFetches all words from a public vocabulary list on https://wordreference.com and returns each term with its list description or a translated value when available.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_vocabulary_list?
Fetches all words from a public vocabulary list on https://wordreference.com and returns each term with its list description or a translated value when available. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass list_id, list_slug, dictionary, fetch_missing_translations, max_translation_workers, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"list": {},
"words": [
{}
],
"source": "<string>",
"total_words": 0,
"dictionary_used": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/1b0f5451-1211-4c2b-a537-96824627fb59/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "1b0f5451-1211-4c2b-a537-96824627fb59",
"variables": {
"list_id": "2998",
"list_slug": "",
"dictionary": "auto",
"fetch_missing_translations": true,
"max_translation_workers": 8,
"timeout_seconds": 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="1b0f5451-1211-4c2b-a537-96824627fb59") — the "get_vocabulary_list" function, which fetches all words from a public vocabulary list on https://wordreference.com and returns each term with its list description or a translated value when available.. It takes list_id (str), list_slug (str), dictionary (str), fetch_missing_translations (bool), max_translation_workers (int), timeout_seconds (int). Return the result as structured JSON.