Marketplace
No threads yet
Live

list_forum_thread_posts

team-bhp.com

Returns paginated Team-BHP forum posts from https://team-bhp.com with full text and HTML, author metadata, links, images, edits, thanks, and pagination totals.

Parameters4
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 list_forum_thread_posts?

Returns paginated Team-BHP forum posts from https://team-bhp.com with full text and HTML, author metadata, links, images, edits, thanks, and pagination totals. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass category_slug, thread_id, thread_slug, page and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "posts": [
    {}
  ],
  "thread_id": 0,
  "page_count": 0,
  "source_url": "<string>",
  "thread_slug": "<string>",
  "total_posts": 0,
  "thread_title": "<string>",
  "category_slug": "<string>",
  "posts_on_page": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/0008b728-01eb-4085-b0fb-e731841eb521/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "0008b728-01eb-4085-b0fb-e731841eb521",
    "variables": {
        "category_slug": "official-new-car-reviews",
        "thread_id": 311538,
        "thread_slug": "2026-bmw-x1-lwb-u12-review",
        "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="0008b728-01eb-4085-b0fb-e731841eb521") — the "list_forum_thread_posts" function, which returns paginated Team-BHP forum posts from https://team-bhp.com with full text and HTML, author metadata, links, images, edits, thanks, and pagination totals..

It takes category_slug (str), thread_id (int), thread_slug (str), page (int). Return the result as structured JSON.