Marketplace
No threads yet
Live

get_taoist_calendar_range

fengsuitang.com

Gets Taoist calendar records from https://fengsuitang.com for a Gregorian date range. Returns daily lunar date, Heavenly Stems and Earthly Branches, auspicious/inauspicious activities, Taoist festivals, zodiac information, and other non-empty source fields.

Parameters5
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 get_taoist_calendar_range?

Gets Taoist calendar records from https://fengsuitang.com for a Gregorian date range. Returns daily lunar date, Heavenly Stems and Earthly Branches, auspicious/inauspicious activities, Taoist festivals, zodiac information, and other non-empty source fields. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass start_date, end_date, lang, max_range_days, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "days": [
    {}
  ],
  "site": "<string>",
  "end_date": "<string>",
  "start_date": "<string>",
  "total_days": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/4d5ed9f0-6470-4f13-9f86-3814f4c30d42/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "4d5ed9f0-6470-4f13-9f86-3814f4c30d42",
    "variables": {
        "start_date": "",
        "end_date": "",
        "lang": "TC",
        "max_range_days": 40,
        "timeout_seconds": 25
    }
}'

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="4d5ed9f0-6470-4f13-9f86-3814f4c30d42") — the "get_taoist_calendar_range" function, which gets Taoist calendar records from https://fengsuitang.com for a Gregorian date range. Returns daily lunar date, Heavenly Stems and Earthly Branches, auspicious/inauspicious activities, Taoist festivals, zodiac information, and other non-empty source fields..

It takes start_date (str), end_date (str), lang (str), max_range_days (int), timeout_seconds (int). Return the result as structured JSON.