Marketplace
No threads yet
Live

get_word_of_the_day

daily.wordreference.com

Returns the latest Basic and Intermediate Word of the Day terms from https://wordreference.com with definitions, examples, usage sections, audio, media, and translation links.

Parameters2
Runs9
Updated3d ago
Operational9 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 get_word_of_the_day?

Returns the latest Basic and Intermediate Word of the Day terms from https://wordreference.com with definitions, examples, usage sections, audio, media, and translation links. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass limit, level and get the result back without maintaining a scraper.

Response

{
  "count": 0,
  "terms": [
    {
      "url": "<string>",
      "slug": "<string>",
      "word": "<string>",
      "facts": [
        {
          "name": "<string>",
          "value": "<string>"
        }
      ],
      "level": "<string>",
      "media": [
        {
          "url": "<string>",
          "kind": "<string>",
          "label": "<string>"
        }
      ],
      "title": "<string>",
      "author": "<string>",
      "category": "<string>",
      "sections": [
        {
          "items": [
            {
              "kind": "<string>",
              "label": "<string>",
              "value": "<string>"
            }
          ],
          "title": "<string>"
        }
      ],
      "source_id": 0,
      "modified_at": "<string>",
      "published_at": "<string>",
      "translations": [
        {
          "url": "<string>",
          "language": "<string>"
        }
      ],
      "related_links": [
        {
          "url": "<string>",
          "kind": "<string>",
          "label": "<string>"
        }
      ]
    }
  ],
  "source_url": "<string>",
  "series_status": "<string>",
  "latest_term_date": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/b370bb0c-d3fe-4f8f-90ce-89545aa9fdd0/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "b370bb0c-d3fe-4f8f-90ce-89545aa9fdd0",
    "variables": {
        "limit": 2,
        "level": "all"
    }
}'

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="b370bb0c-d3fe-4f8f-90ce-89545aa9fdd0") — the "get_word_of_the_day" function, which returns the latest Basic and Intermediate Word of the Day terms from https://wordreference.com with definitions, examples, usage sections, audio, media, and translation links..

It takes limit (int), level (str). Return the result as structured JSON.