Live
get_blog_post_by_date_slug
soliditylang.orgReturns one Solidity blog post from https://soliditylang.org by date and slug, including title, author, category, publication state, URL, and full content markdown.
Parameters4
Runs5
Updated3d ago
Operational5 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_blog_post_by_date_slug?
Returns one Solidity blog post from https://soliditylang.org by date and slug, including title, author, category, publication state, URL, and full content markdown. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass year, month, day, slug and get the result back without maintaining a scraper.
Response
{
"post": {
"url": "<string>",
"date": "<string>",
"title": "<string>",
"author": "<string>",
"category": "<string>",
"published": true,
"content_markdown": "<string>"
},
"source_url": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/2e032f7a-208e-412e-b1e7-64aff980630b/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "2e032f7a-208e-412e-b1e7-64aff980630b",
"variables": {
"year": 2026,
"month": 7,
"day": 9,
"slug": "unsound-spill-in-mutual-recursion-bug"
}
}'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="2e032f7a-208e-412e-b1e7-64aff980630b") — the "get_blog_post_by_date_slug" function, which returns one Solidity blog post from https://soliditylang.org by date and slug, including title, author, category, publication state, URL, and full content markdown.. It takes year (int), month (int), day (int), slug (str). Return the result as structured JSON.