Live
CNN Latest Headlines
cnn.comFetches the latest headlines from the CNN homepage including title, URL, section, and description.
Parameters1
Runs15
Updated3d ago
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is CNN Latest Headlines?
Fetches the latest headlines from the CNN homepage including title, URL, section, and description. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass limit and get the result back without maintaining a scraper.
Response
{
"headlines": [
{
"url": "<string>",
"title": "<string>",
"section": "<string>",
"description": "<string>"
}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/a12f2757-2400-4820-a475-4027520107ad/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "a12f2757-2400-4820-a475-4027520107ad",
"variables": {
"limit": 20
}
}'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="a12f2757-2400-4820-a475-4027520107ad") — the "CNN Latest Headlines" function, which fetches the latest headlines from the CNN homepage including title, URL, section, and description.. It takes limit (int). Return the result as structured JSON.