Live
list_forum_categories
team-bhp.comReturns the full Team-BHP forum category and sub-forum hierarchy with names, slugs, descriptions, counts, and latest-post metadata from https://team-bhp.com.
Parameters0
Runs12
Updated3d ago
Degraded12 runs · 75% 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 list_forum_categories?
Returns the full Team-BHP forum category and sub-forum hierarchy with names, slugs, descriptions, counts, 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 — call it with no parameters and get the result back without maintaining a scraper.
Response
{
"categories": [
{
"name": "<string>",
"slug": "<string>",
"forums": [
{
"url": "<string>",
"name": "<string>",
"slug": "<string>",
"forum_id": 0,
"last_post": {
"url": "<string>",
"title": "<string>",
"author": "<string>",
"posted_at": "<string>",
"thread_id": 0,
"author_profile_url": "<string>"
},
"subforums": [
{
"url": "<string>",
"name": "<string>",
"slug": "<string>",
"forum_id": 0
}
],
"post_count": 0,
"description": "<string>",
"thread_count": 0
}
]
}
],
"source_url": "<string>",
"forum_count": 0,
"category_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/a8f8edc8-95cd-4398-a211-6307e61ae857/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "a8f8edc8-95cd-4398-a211-6307e61ae857",
"variables": {}
}'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="a8f8edc8-95cd-4398-a211-6307e61ae857") — the "list_forum_categories" function, which returns the full Team-BHP forum category and sub-forum hierarchy with names, slugs, descriptions, counts, and latest-post metadata from https://team-bhp.com.. It takes no parameters. Return the result as structured JSON.