Marketplace
No threads yet
Live

list_blog_posts

notte.cc

Lists posts from the https://notte.cc blog in reverse-chronological order, with category filtering and complete post-card metadata.

Parameters1
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?

Lists posts from the https://notte.cc blog in reverse-chronological order, with category filtering and complete post-card metadata. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass category and get the result back without maintaining a scraper.

Response

{
  "count": 0,
  "posts": [
    {
      "url": "<string>",
      "date": "<string>",
      "slug": "<string>",
      "title": "<string>",
      "author": "<string>",
      "excerpt": "<string>",
      "category": "<string>",
      "cover_image_alt": "<string>",
      "cover_image_url": "<string>",
      "author_avatar_url": "<string>"
    }
  ],
  "category": "<string>",
  "source_url": "<string>",
  "available_categories": [
    {
      "name": "<string>",
      "slug": "<string>"
    }
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/f0094ab9-4b60-4e48-9fdf-31bbeae4caaa/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "f0094ab9-4b60-4e48-9fdf-31bbeae4caaa",
    "variables": {
        "category": "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="f0094ab9-4b60-4e48-9fdf-31bbeae4caaa") — the "list_blog_posts" function, which lists posts from the https://notte.cc blog in reverse-chronological order, with category filtering and complete post-card metadata..

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