Live
search_forum_threads_and_posts
team-bhp.comSearches forum threads or posts on https://team-bhp.com and returns paginated result metadata, previews, authors, forums, activity counts, and a reusable search ID.
Parameters5
Runs12
Updated3d ago
Degraded12 runs · 83.3% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_forum_threads_and_posts?
Searches forum threads or posts on https://team-bhp.com and returns paginated result metadata, previews, authors, forums, activity counts, and a reusable search ID. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, result_type, title_only, page, search_id and get the result back without maintaining a scraper.
Response
{
"page": 0,
"query": "<string>",
"results": [
{}
],
"per_page": 0,
"search_id": 0,
"page_count": 0,
"result_end": 0,
"source_url": "<string>",
"result_type": "<string>",
"result_count": 0,
"result_start": 0,
"total_results": 0,
"search_seconds": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/f8d17908-683a-4735-8389-7ff93c79dfb0/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "f8d17908-683a-4735-8389-7ff93c79dfb0",
"variables": {
"query": "electric car",
"result_type": "threads",
"title_only": false,
"page": 1,
"search_id": 0
}
}'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="f8d17908-683a-4735-8389-7ff93c79dfb0") — the "search_forum_threads_and_posts" function, which searches forum threads or posts on https://team-bhp.com and returns paginated result metadata, previews, authors, forums, activity counts, and a reusable search ID.. It takes query (str), result_type (str), title_only (bool), page (int), search_id (int). Return the result as structured JSON.