list_recent_mix_changes
mixesdb.comReturns deduplicated recently added or updated article-namespace mix pages from https://www.mixesdb.com with URLs, titles, timestamps, change types, and complete non-empty source fields.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_recent_mix_changes?
Returns deduplicated recently added or updated article-namespace mix pages from https://www.mixesdb.com with URLs, titles, timestamps, change types, and complete 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 limit, include_undated and get the result back without maintaining a scraper.
Response
{
"count": 0,
"items": [
{
"title": "<string>",
"page_url": "<string>",
"timestamp": "<string>",
"change_type": "<string>",
"source_fields": {}
}
],
"has_more": true,
"include_undated": true,
"requested_limit": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/3bbeaf81-d1b5-45aa-87cd-bf6e63936fe8/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "3bbeaf81-d1b5-45aa-87cd-bf6e63936fe8",
"variables": {
"limit": 20,
"include_undated": false
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="3bbeaf81-d1b5-45aa-87cd-bf6e63936fe8") — the "list_recent_mix_changes" function, which returns deduplicated recently added or updated article-namespace mix pages from https://www.mixesdb.com with URLs, titles, timestamps, change types, and complete non-empty source fields.. It takes limit (int), include_undated (bool). Return the result as structured JSON.