Marketplace
No threads yet
Live

search_posts_by_display_name

archive.4plebs.org

Returns paginated archived posts from users whose display name exactly matches the requested name on https://archive.4plebs.org, with complete non-empty post and media fields.

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_posts_by_display_name?

Returns paginated archived posts from users whose display name exactly matches the requested name on https://archive.4plebs.org, with complete non-empty post and media fields. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass board, display_name, page and get the result back without maintaining a scraper.

Response

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

Call it

curl --location 'https://us-prod.notte.cc/functions/db888d5e-7478-4f40-a6e5-fbdb16c9952d/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "db888d5e-7478-4f40-a6e5-fbdb16c9952d",
    "variables": {
        "board": "pol",
        "display_name": "Q",
        "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="db888d5e-7478-4f40-a6e5-fbdb16c9952d") — the "search_posts_by_display_name" function, which returns paginated archived posts from users whose display name exactly matches the requested name on https://archive.4plebs.org, with complete non-empty post and media fields..

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