Marketplace
No threads yet
Live

get_latest_threads

archive.4plebs.org

Gets the latest archived threads for a selected board and page from https://archive.4plebs.org, including each thread's original post and recent replies.

Parameters2
Runs14
Updated10d ago
Degraded14 runs · 78.5% 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 get_latest_threads?

Gets the latest archived threads for a selected board and page from https://archive.4plebs.org, including each thread's original post and recent replies. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass board, page and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "board": "<string>",
  "payload": "<any>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/55fa488f-67b9-4f8a-9d5d-d709aa02eb78/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "55fa488f-67b9-4f8a-9d5d-d709aa02eb78",
    "variables": {
        "board": "pol",
        "page": 1
    }
}'

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="55fa488f-67b9-4f8a-9d5d-d709aa02eb78") — the "get_latest_threads" function, which gets the latest archived threads for a selected board and page from https://archive.4plebs.org, including each thread's original post and recent replies..

It takes board (str), page (int). Return the result as structured JSON.