Live
list_recent_match_results
hltv.orgReturns recent Counter-Strike match results from https://hltv.org with timestamps, teams, scores, winners, events, match types, logos, and direct match URLs.
Parameters1
Runs11
Updated53m ago
Degraded11 runs · 45.4% 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 list_recent_match_results?
Returns recent Counter-Strike match results from https://hltv.org with timestamps, teams, scores, winners, events, match types, logos, and direct match URLs. 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
{
"results": [
{
"team1": {
"won": true,
"name": "<string>",
"score": 0,
"logo_url": "<string>"
},
"team2": {
"won": true,
"name": "<string>",
"score": 0,
"logo_url": "<string>"
},
"winner": "<string>",
"match_id": 0,
"match_url": "<string>",
"event_name": "<string>",
"match_type": "<string>",
"final_score": "<string>",
"played_at_utc": "<string>",
"event_logo_url": "<string>",
"unix_timestamp_ms": 0
}
],
"returned": 0,
"source_url": "<string>",
"available_on_page": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/08d52064-b187-4f77-84b7-f71e290703e2/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "08d52064-b187-4f77-84b7-f71e290703e2",
"variables": {
"limit": 25
}
}'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="08d52064-b187-4f77-84b7-f71e290703e2") — the "list_recent_match_results" function, which returns recent Counter-Strike match results from https://hltv.org with timestamps, teams, scores, winners, events, match types, logos, and direct match URLs.. It takes limit (int). Return the result as structured JSON.