Live
list_recent_news
egs-platform-service.store.epicgames.comReturns recent news articles and blog posts from https://store.epicgames.com with complete non-empty records, summaries, publication dates, and URLs.
Parameters4
Runs9
Updated3d ago
Degraded9 runs · 55.5% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_recent_news?
Returns recent news articles and blog posts from https://store.epicgames.com with complete non-empty records, summaries, publication dates, and URLs. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass limit, start, locale, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"site": "<string>",
"count": 0,
"limit": 0,
"start": 0,
"total": 0,
"locale": "<string>",
"articles": [
{}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/35b2d37f-360a-4869-aa8f-19f01fd99ac0/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "35b2d37f-360a-4869-aa8f-19f01fd99ac0",
"variables": {
"limit": 10,
"start": 0,
"locale": "en-US",
"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="35b2d37f-360a-4869-aa8f-19f01fd99ac0") — the "list_recent_news" function, which returns recent news articles and blog posts from https://store.epicgames.com with complete non-empty records, summaries, publication dates, and URLs.. It takes limit (int), start (int), locale (str), timeout_seconds (int). Return the result as structured JSON.