Live
get_latest_blog_post
notte.ccReturns the newest Notte blog post with title, URL, published date, category, excerpt and author.
Parameters0
Runs6
Updated4d ago
Operational6 runs · 100% 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 get_latest_blog_post?
Returns the newest Notte blog post with title, URL, published date, category, excerpt and author. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — call it with no parameters and get the result back without maintaining a scraper.
Response
{
"post": {
"url": "<string>",
"slug": "<string>",
"title": "<string>",
"author": "<string>",
"excerpt": "<string>",
"category": "<string>",
"published_date": "<string>",
"cover_image_alt": "<string>",
"cover_image_url": "<string>",
"author_avatar_url": "<string>"
},
"source_url": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/046c9d59-81ca-4f6c-8ead-0618e398135a/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "046c9d59-81ca-4f6c-8ead-0618e398135a",
"variables": {}
}'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="046c9d59-81ca-4f6c-8ead-0618e398135a") — the "get_latest_blog_post" function, which returns the newest Notte blog post with title, URL, published date, category, excerpt and author.. It takes no parameters. Return the result as structured JSON.