list_blog_posts
bk8-plus.comRetrieves paginated blog posts from https://bk8-plus.com with optional category filtering by category ID. Returns each post with all non-empty source fields including title, excerpt, date, slug, and category IDs.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_blog_posts?
Retrieves paginated blog posts from https://bk8-plus.com with optional category filtering by category ID. Returns each post with all non-empty source fields including title, excerpt, date, slug, and category IDs. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass page, per_page, category_id, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"page": 0,
"site": "<string>",
"posts": [
{}
],
"per_page": 0,
"category_id": 0,
"total_pages": 0,
"total_posts": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/41568c14-9575-44dc-8a9a-bd35659c7b7f/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "41568c14-9575-44dc-8a9a-bd35659c7b7f",
"variables": {
"page": 1,
"per_page": 10,
"category_id": 0,
"timeout_seconds": 25
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="41568c14-9575-44dc-8a9a-bd35659c7b7f") — the "list_blog_posts" function, which retrieves paginated blog posts from https://bk8-plus.com with optional category filtering by category ID. Returns each post with all non-empty source fields including title, excerpt, date, slug, and category IDs.. It takes page (int), per_page (int), category_id (int), timeout_seconds (int). Return the result as structured JSON.