Marketplace
No threads yet
Live

search_posts_by_date_range

archive.4plebs.org

Returns full archived post records matching text within a start and end date on https://archive.4plebs.org, with result counts and pagination details.

Parameters5
Runs11
Updated3d ago
Degraded11 runs · 63.6% 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_posts_by_date_range?

Returns full archived post records matching text within a start and end date on https://archive.4plebs.org, with result counts and pagination details. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass board, text, start_date, end_date, page and get the result back without maintaining a scraper.

Response

{
  "posts": [
    {}
  ],
  "metadata": {
    "page": 0,
    "text": "<string>",
    "board": "<string>",
    "end_date": "<string>",
    "has_next": true,
    "page_size": 0,
    "start_date": "<string>",
    "total_found": 0,
    "has_previous": true,
    "returned_count": 0,
    "total_is_capped": true
  }
}

Call it

curl --location 'https://us-prod.notte.cc/functions/3d1518c4-c212-4cef-9191-a3c551740f12/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "3d1518c4-c212-4cef-9191-a3c551740f12",
    "variables": {
        "board": "pol",
        "text": "Dresden",
        "start_date": "2017-11-09",
        "end_date": "2017-11-10",
        "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="3d1518c4-c212-4cef-9191-a3c551740f12") — the "search_posts_by_date_range" function, which returns full archived post records matching text within a start and end date on https://archive.4plebs.org, with result counts and pagination details..

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