Live
list_latest_news
team-bhp.comReturns paginated latest automotive news listings from https://team-bhp.com with each article title, URL, summary, relative date, and image.
Parameters1
Runs6
Updated3d ago
Operational6 runs · 100% 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_latest_news?
Returns paginated latest automotive news listings from https://team-bhp.com with each article title, URL, summary, relative date, and image. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass page and get the result back without maintaining a scraper.
Response
{
"page": 0,
"articles": [
{
"url": "<string>",
"date": "<string>",
"title": "<string>",
"summary": "<string>",
"image_url": "<string>"
}
],
"has_newer": true,
"has_older": true,
"source_url": "<string>",
"article_count": 0,
"visible_pages": [
0
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/7b6a177f-383b-4600-b322-6713e18cd7d6/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "7b6a177f-383b-4600-b322-6713e18cd7d6",
"variables": {
"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="7b6a177f-383b-4600-b322-6713e18cd7d6") — the "list_latest_news" function, which returns paginated latest automotive news listings from https://team-bhp.com with each article title, URL, summary, relative date, and image.. It takes page (int). Return the result as structured JSON.