Marketplace
No threads yet
Live

list_board_gallery

archive.4plebs.org

Returns one paginated board media gallery from https://archive.4plebs.org with complete non-empty post, media, OCR, and machine-generated description fields.

Parameters2
Runs6
Updated3d ago
Operational6 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 list_board_gallery?

Returns one paginated board media gallery from https://archive.4plebs.org with complete non-empty post, media, OCR, and machine-generated description fields. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass board, page and get the result back without maintaining a scraper.

Response

{
  "posts": [
    {}
  ],
  "metadata": {
    "page": 0,
    "board": "<string>",
    "has_next": true,
    "page_size": 0,
    "has_previous": true,
    "posts_with_ocr": 0,
    "returned_count": 0,
    "posts_with_ml_descriptions": 0
  }
}

Call it

curl --location 'https://us-prod.notte.cc/functions/9145cc2e-7fe7-49a7-a78a-14f4394213ef/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "9145cc2e-7fe7-49a7-a78a-14f4394213ef",
    "variables": {
        "board": "pol",
        "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="9145cc2e-7fe7-49a7-a78a-14f4394213ef") — the "list_board_gallery" function, which returns one paginated board media gallery from https://archive.4plebs.org with complete non-empty post, media, OCR, and machine-generated description fields..

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