Marketplace
No threads yet
Live

search_posts_by_tripcode

archive.4plebs.org

Returns paginated archived posts matching a cryptographic tripcode on https://archive.4plebs.org, with complete non-empty post and media fields plus pagination 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_posts_by_tripcode?

Returns paginated archived posts matching a cryptographic tripcode on https://archive.4plebs.org, with complete non-empty post and media fields plus pagination metadata. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass board, tripcode, page and get the result back without maintaining a scraper.

Response

{
  "posts": [
    {}
  ],
  "metadata": {
    "page": 0,
    "board": "<string>",
    "has_next": true,
    "tripcode": "<string>",
    "page_size": 0,
    "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/e913a69a-6de5-4456-bd28-771e635ae2e2/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "e913a69a-6de5-4456-bd28-771e635ae2e2",
    "variables": {
        "board": "pol",
        "tripcode": "!!OKYv5XdRdqm",
        "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="e913a69a-6de5-4456-bd28-771e635ae2e2") — the "search_posts_by_tripcode" function, which returns paginated archived posts matching a cryptographic tripcode on https://archive.4plebs.org, with complete non-empty post and media fields plus pagination metadata..

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