Marketplace
No threads yet
Live

get_word_translations

wordreference.com

Retrieves comprehensive dictionary translations from https://wordreference.com, organized into translation sections with source terms, grammatical details, usage contexts, translation variants, notes, and bilingual examples. Marks stale_input when the word is not found in the selected dictionary.

Parameters2
Runs11
Updated10d ago
Degraded11 runs · 81.8% 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 get_word_translations?

Retrieves comprehensive dictionary translations from https://wordreference.com, organized into translation sections with source terms, grammatical details, usage contexts, translation variants, notes, and bilingual examples. Marks stale_input when the word is not found in the selected dictionary. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass word, dictionary and get the result back without maintaining a scraper.

Response

{
  "word": "<string>",
  "sections": [
    {
      "name": "<string>",
      "entries": [
        {
          "notes": [
            "<string>"
          ],
          "examples": [
            {
              "source_texts": [
                "<string>"
              ],
              "translated_texts": [
                "<string>"
              ]
            }
          ],
          "source_term": "<string>",
          "translations": [
            {
              "term": "<string>",
              "usage_contexts": [
                "<string>"
              ],
              "grammatical_info": [
                "<string>"
              ]
            }
          ],
          "usage_contexts": [
            "<string>"
          ],
          "grammatical_info": [
            "<string>"
          ]
        }
      ]
    }
  ],
  "dictionary": "<string>",
  "stale_input": true,
  "source_language": "<string>",
  "target_language": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/18f5e65f-ea7f-4ea5-8420-5e3c2c154110/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "18f5e65f-ea7f-4ea5-8420-5e3c2c154110",
    "variables": {
        "word": "hello",
        "dictionary": "enes"
    }
}'

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="18f5e65f-ea7f-4ea5-8420-5e3c2c154110") — the "get_word_translations" function, which retrieves comprehensive dictionary translations from https://wordreference.com, organized into translation sections with source terms, grammatical details, usage contexts, translation variants, notes, and bilingual examples. Marks stale_input when the word is not found in the selected dictionary..

It takes word (str), dictionary (str). Return the result as structured JSON.