get_homepage_featured_content
driverdb.comRetrieves the homepage featured content from https://driverdb.com, including top-rated drivers, latest motorsport news, and the newest race results across championships. Returns all non-empty source fields for every record.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_homepage_featured_content?
Retrieves the homepage featured content from https://driverdb.com, including top-rated drivers, latest motorsport news, and the newest race results across championships. Returns all non-empty source fields for every record. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass driver_limit, news_limit, result_limit and get the result back without maintaining a scraper.
Response
{
"source_url": "<string>",
"latest_news": [
{}
],
"latest_results": [
{}
],
"top_rated_drivers": [
{}
],
"latest_results_meta": {},
"top_rated_drivers_meta": {}
}Call it
curl --location 'https://us-prod.notte.cc/functions/6699af25-033a-45b8-a0bd-36a8ef15693b/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "6699af25-033a-45b8-a0bd-36a8ef15693b",
"variables": {
"driver_limit": 10,
"news_limit": 3,
"result_limit": 3
}
}'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="6699af25-033a-45b8-a0bd-36a8ef15693b") — the "get_homepage_featured_content" function, which retrieves the homepage featured content from https://driverdb.com, including top-rated drivers, latest motorsport news, and the newest race results across championships. Returns all non-empty source fields for every record.. It takes driver_limit (int), news_limit (int), result_limit (int). Return the result as structured JSON.