Marketplace
No threads yet
Live

list_forum_threads

team-bhp.com

Returns paginated thread listings for a Team-BHP forum slug, including IDs, titles, authors, replies, views, status, and latest-post metadata from https://team-bhp.com.

Parameters2
Runs14
Updated3d ago
Degraded14 runs · 78.5% 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_threads?

Returns paginated thread listings for a Team-BHP forum slug, including IDs, titles, authors, replies, views, status, and latest-post metadata from https://team-bhp.com. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass forum_slug, page and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "threads": [
    {
      "url": "<string>",
      "title": "<string>",
      "views": 0,
      "author": "<string>",
      "is_poll": true,
      "replies": 0,
      "is_locked": true,
      "is_sticky": true,
      "thread_id": 0,
      "page_count": 0,
      "latest_post": {
        "url": "<string>",
        "author": "<string>",
        "posted_at": "<string>"
      }
    }
  ],
  "forum_slug": "<string>",
  "source_url": "<string>",
  "thread_count": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/81b4baae-a7fb-4533-bf5d-5204f220597c/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "81b4baae-a7fb-4533-bf5d-5204f220597c",
    "variables": {
        "forum_slug": "official-new-car-reviews",
        "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="81b4baae-a7fb-4533-bf5d-5204f220597c") — the "list_forum_threads" function, which returns paginated thread listings for a Team-BHP forum slug, including IDs, titles, authors, replies, views, status, and latest-post metadata from https://team-bhp.com..

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