Marketplace
No threads yet
Live

list_vocab_lists

wordreference.com

Lists public vocabulary collections from https://wordreference.com. Returns each collection's list ID, name, URL, language, and any available description.

Parameters3
Runs11
Updated8d ago
Operational11 runs · 100% 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 list_vocab_lists?

Lists public vocabulary collections from https://wordreference.com. Returns each collection's list ID, name, URL, language, and any available description. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass sort, max_pages, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "sort": "<string>",
  "lists": [
    {}
  ],
  "source": "<string>",
  "total_lists": 0,
  "pages_fetched": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/4499a71a-403b-4686-965a-955ddafc0de6/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "4499a71a-403b-4686-965a-955ddafc0de6",
    "variables": {
        "sort": "date_desc",
        "max_pages": 0,
        "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.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="4499a71a-403b-4686-965a-955ddafc0de6") — the "list_vocab_lists" function, which lists public vocabulary collections from https://wordreference.com. Returns each collection's list ID, name, URL, language, and any available description..

It takes sort (str), max_pages (int), timeout_seconds (int). Return the result as structured JSON.