Marketplace
No threads yet
Live

list_blog_posts

jrdz.dev

Returns every post in the https://jrdz.dev RSS feed with titles, links, descriptions, publication dates, language, and category tags. Results can be filtered by category and English or Spanish language.

Parameters2
Runs10
Updated10d ago
Operational10 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is list_blog_posts?

Returns every post in the https://jrdz.dev RSS feed with titles, links, descriptions, publication dates, language, and category tags. Results can be filtered by category and English or Spanish language. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass category, language and get the result back without maintaining a scraper.

Response

{
  "count": 0,
  "posts": [
    {
      "guid": "<string>",
      "link": "<string>",
      "title": "<string>",
      "language": "<string>",
      "categories": [
        "<string>"
      ],
      "description": "<string>",
      "publication_date": "<string>",
      "guid_is_permalink": true
    }
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/71a1816f-ae7e-4c09-ab5e-b7309121f849/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "71a1816f-ae7e-4c09-ab5e-b7309121f849",
    "variables": {
        "category": "all",
        "language": "all"
    }
}'

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="71a1816f-ae7e-4c09-ab5e-b7309121f849") — the "list_blog_posts" function, which returns every post in the https://jrdz.dev RSS feed with titles, links, descriptions, publication dates, language, and category tags. Results can be filtered by category and English or Spanish language..

It takes category (str), language (str). Return the result as structured JSON.