get_daily_football_scores
kooora.comGets the selected day's football schedule and live scores from https://kooora.com, grouped by competition with teams, scores, status, venue, and live-period details. It defaults to the current day and refreshes live match states.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_daily_football_scores?
Gets the selected day's football schedule and live scores from https://kooora.com, grouped by competition with teams, scores, status, venue, and live-period details. It defaults to the current day and refreshes live match states. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass date, include_venues and get the result back without maintaining a scraper.
Response
{
"date": "<string>",
"match_count": 0,
"competitions": [
{
"id": "<string>",
"name": "<string>",
"matches": [
{
"id": "<string>",
"url": "<string>",
"score": {
"team_a": 0,
"team_b": 0
},
"venue": {
"name": "<string>",
"latitude": 0,
"longitude": 0
},
"period": {
"type": "<string>",
"extra": 0,
"minute": 0
},
"status": "<string>",
"team_a": {
"id": "<string>",
"code": "<string>",
"name": "<string>",
"image": {
"alt": "<string>",
"url": "<string>"
},
"long_name": "<string>"
},
"team_b": {
"id": "<string>",
"code": "<string>",
"name": "<string>",
"image": {
"alt": "<string>",
"url": "<string>"
},
"long_name": "<string>"
},
"gameset": {
"id": "<string>",
"name": "<string>",
"is_knockout": true
},
"start_date": "<string>",
"penalty_score": {
"team_a": 0,
"team_b": 0
},
"aggregate_score": {
"team_a": 0,
"team_b": 0
},
"competition_name": "<string>"
}
]
}
],
"competition_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/e32be208-41f2-4282-b941-87ca2bc93e51/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "e32be208-41f2-4282-b941-87ca2bc93e51",
"variables": {
"date": "",
"include_venues": true
}
}'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="e32be208-41f2-4282-b941-87ca2bc93e51") — the "get_daily_football_scores" function, which gets the selected day's football schedule and live scores from https://kooora.com, grouped by competition with teams, scores, status, venue, and live-period details. It defaults to the current day and refreshes live match states.. It takes date (str), include_venues (bool). Return the result as structured JSON.