Live
get_blog_post
jrdz.devReturns one complete blog article from https://jrdz.dev by slug path with its title, description, author, dates, category, tags, language, and full text.
Parameters1
Runs6
Updated3d 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_blog_post?
Returns one complete blog article from https://jrdz.dev by slug path with its title, description, author, dates, category, tags, language, and full text. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass slug_path and get the result back without maintaining a scraper.
Response
{
"url": "<string>",
"tags": [
"<string>"
],
"title": "<string>",
"author": {
"url": "<string>",
"name": "<string>",
"alternate_name": "<string>"
},
"category": "<string>",
"language": "<string>",
"full_text": "<string>",
"publisher": {
"url": "<string>",
"name": "<string>"
},
"slug_path": "<string>",
"description": "<string>",
"modified_date": "<string>",
"publication_date": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/caa1a0f4-b400-4765-8dd1-94c5a4c9e82d/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "caa1a0f4-b400-4765-8dd1-94c5a4c9e82d",
"variables": {
"slug_path": "DEFAULT_SLUG_PATH"
}
}'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="caa1a0f4-b400-4765-8dd1-94c5a4c9e82d") — the "get_blog_post" function, which returns one complete blog article from https://jrdz.dev by slug path with its title, description, author, dates, category, tags, language, and full text.. It takes slug_path (str). Return the result as structured JSON.