Marketplace
No threads yet
Live

list_blog_posts

soliditylang.org

Returns every Solidity blog post from https://soliditylang.org with title, date, author, category, publication state, URL, and full content markdown, with optional category filtering.

Parameters1
Runs7
Updated3d ago
Degraded7 runs · 85.7% 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 Solidity blog post from https://soliditylang.org with title, date, author, category, publication state, URL, and full content markdown, with optional category filtering. 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>",
      "title": "<string>",
      "author": "<string>",
      "category": "<string>",
      "published": true,
      "content_markdown": "<string>"
    }
  ],
  "source_url": "<string>",
  "category_filter": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/84b83419-e9b3-4149-be56-7ca206d1e768/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "84b83419-e9b3-4149-be56-7ca206d1e768",
    "variables": {
        "category": ""
    }
}'

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="84b83419-e9b3-4149-be56-7ca206d1e768") — the "list_blog_posts" function, which returns every Solidity blog post from https://soliditylang.org with title, date, author, category, publication state, URL, and full content markdown, with optional category filtering..

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