Live
get_live_team_match
kooora.comReturns a currently live match for a named team from https://kooora.com with score, minute, competition, venue, lineups, and deduplicated goal, card, and substitution events.
Parameters1
Runs9
Updated3d ago
Degraded9 runs · 77.7% 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 get_live_team_match?
Returns a currently live match for a named team from https://kooora.com with score, minute, competition, venue, lineups, and deduplicated goal, card, and substitution events. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass team_name and get the result back without maintaining a scraper.
Response
{
"data": {
"match": {},
"events": [
{}
],
"source_url": "<string>",
"event_count": 0
},
"date": "<string>",
"query": "<string>",
"live_match_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/ea5087f2-2e5a-4971-8d89-6a0283e66839/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "ea5087f2-2e5a-4971-8d89-6a0283e66839",
"variables": {
"team_name": ""
}
}'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="ea5087f2-2e5a-4971-8d89-6a0283e66839") — the "get_live_team_match" function, which returns a currently live match for a named team from https://kooora.com with score, minute, competition, venue, lineups, and deduplicated goal, card, and substitution events.. It takes team_name (str). Return the result as structured JSON.