Marketplace
No threads yet
Live

get_daily_almanax_entry

dofus.com

Returns today's DOFUS Almanax entry from the Krosmoz calendar linked by https://dofus.com, including offering, bonus, quest, zodiac, Meridia, and Meridian effect details.

Parameters1
Runs8
Updated8d ago
Operational8 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_daily_almanax_entry?

Returns today's DOFUS Almanax entry from the Krosmoz calendar linked by https://dofus.com, including offering, bonus, quest, zodiac, Meridia, and Meridian effect details. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass lang and get the result back without maintaining a scraper.

Response

{
  "entry": {
    "bonus": {
      "title": "<string>",
      "description": "<string>"
    },
    "quest": {
      "title": "<string>",
      "description": "<string>"
    },
    "zodiac": {
      "name": "<string>",
      "image_url": "<string>",
      "description": "<string>"
    },
    "meridia": {
      "name": "<string>",
      "image_url": "<string>",
      "description": "<string>"
    },
    "offering": {
      "image_url": "<string>",
      "description": "<string>"
    },
    "protector": {
      "name": "<string>",
      "image_url": "<string>",
      "description": "<string>"
    },
    "date_label": "<string>",
    "day_number": 0,
    "month_name": "<string>",
    "source_url": "<string>",
    "triviax_quote": "<string>",
    "triviax_title": "<string>",
    "meridian_effect_title": "<string>",
    "meridian_effect_description": "<string>"
  }
}

Call it

curl --location 'https://us-prod.notte.cc/functions/43cb9103-fc7a-4dcb-8805-7c54978f12d9/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "43cb9103-fc7a-4dcb-8805-7c54978f12d9",
    "variables": {
        "lang": "en"
    }
}'

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="43cb9103-fc7a-4dcb-8805-7c54978f12d9") — the "get_daily_almanax_entry" function, which returns today's DOFUS Almanax entry from the Krosmoz calendar linked by https://dofus.com, including offering, bonus, quest, zodiac, Meridia, and Meridian effect details..

It takes lang (str). Return the result as structured JSON.