get_recent_sports_news
kooora.comGets up to 30 of the most recent sports news articles from https://kooora.com. It returns titles, teasers, publication and update timestamps, images, article URLs, tags, authors, and comment metadata ordered newest first.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_recent_sports_news?
Gets up to 30 of the most recent sports news articles from https://kooora.com. It returns titles, teasers, publication and update timestamps, images, article URLs, tags, authors, and comment metadata ordered newest first. 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
{
"count": 0,
"articles": [
{
"id": "<string>",
"url": "<string>",
"slug": "<string>",
"tags": [
{
"id": "<string>",
"name": "<string>",
"slug": "<string>",
"display": true,
"page_type": "<string>",
"routing_category_slug": "<string>"
}
],
"image": {
"alt": "<string>",
"url": "<string>",
"width": 0,
"credit": "<string>",
"height": 0,
"source": "<string>"
},
"media": {
"alt": "<string>",
"url": "<string>",
"width": 0,
"credit": "<string>",
"height": 0,
"source": "<string>"
},
"title": "<string>",
"teaser": "<string>",
"authors": [
{
"id": "<string>",
"name": "<string>",
"image": {
"alt": "<string>",
"url": "<string>",
"width": 0,
"credit": "<string>",
"height": 0,
"source": "<string>"
},
"social_accounts": [
{
"type": "<string>",
"value": "<string>",
"display": true
}
]
}
],
"page_type": "<string>",
"updated_at": "<string>",
"mobile_image": {
"alt": "<string>",
"url": "<string>",
"width": 0,
"credit": "<string>",
"height": 0,
"source": "<string>"
},
"published_at": "<string>",
"comments_allowed": true,
"disqus_thread_id": "<string>",
"routing_category_slug": "<string>"
}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/8726ab15-3442-4b69-a848-d029b83669fb/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "8726ab15-3442-4b69-a848-d029b83669fb",
"variables": {
"limit": 30
}
}'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="8726ab15-3442-4b69-a848-d029b83669fb") — the "get_recent_sports_news" function, which gets up to 30 of the most recent sports news articles from https://kooora.com. It returns titles, teasers, publication and update timestamps, images, article URLs, tags, authors, and comment metadata ordered newest first.. It takes limit (int). Return the result as structured JSON.