search_original_posts
archive.4plebs.orgReturns paginated opening-post-only search results from https://archive.4plebs.org with filters for text, subject, username, tripcode, dates, board, and sort order.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_original_posts?
Returns paginated opening-post-only search results from https://archive.4plebs.org with filters for text, subject, username, tripcode, dates, board, and sort order. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass board, text, subject, username, tripcode, date_start, date_end, sort_order, page and get the result back without maintaining a scraper.
Response
{
"posts": [
{}
],
"metadata": {
"page": 0,
"board": "<string>",
"filters": {},
"heading": "<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/1d08f66c-0fa0-48d0-b653-99e02e3929cd/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "1d08f66c-0fa0-48d0-b653-99e02e3929cd",
"variables": {
"board": "pol",
"text": "hello",
"subject": "",
"username": "",
"tripcode": "",
"date_start": "",
"date_end": "",
"sort_order": "newest",
"page": 1
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="1d08f66c-0fa0-48d0-b653-99e02e3929cd") — the "search_original_posts" function, which returns paginated opening-post-only search results from https://archive.4plebs.org with filters for text, subject, username, tripcode, dates, board, and sort order.. It takes board (str), text (str), subject (str), username (str), tripcode (str), date_start (str), date_end (str), sort_order (str), page (int). Return the result as structured JSON.