Marketplace
No threads yet
Live

search_subject_opening_posts

archive.4plebs.org

Returns paginated opening posts whose subject matches a title string on https://archive.4plebs.org, including complete non-empty post and media metadata.

Parameters3
Runs5
Updated3d ago
Operational5 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 search_subject_opening_posts?

Returns paginated opening posts whose subject matches a title string on https://archive.4plebs.org, including complete non-empty post and media metadata. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass board, subject, page and get the result back without maintaining a scraper.

Response

{
  "posts": [
    {}
  ],
  "metadata": {
    "page": 0,
    "board": "<string>",
    "heading": "<string>",
    "subject": "<string>",
    "has_next": true,
    "page_size": 0,
    "search_url": "<string>",
    "total_found": 0,
    "total_pages": 0,
    "has_previous": true,
    "returned_count": 0,
    "total_is_capped": true
  }
}

Call it

curl --location 'https://us-prod.notte.cc/functions/120bdaa9-e09c-45e9-b2fc-0b17c6549617/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "120bdaa9-e09c-45e9-b2fc-0b17c6549617",
    "variables": {
        "board": "pol",
        "subject": "Trump",
        "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="120bdaa9-e09c-45e9-b2fc-0b17c6549617") — the "search_subject_opening_posts" function, which returns paginated opening posts whose subject matches a title string on https://archive.4plebs.org, including complete non-empty post and media metadata..

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