Live
get_match_report
fbref.comReturns the final score, teams, date, venue, competition, attendance, managers, captains and officials for a specific match from https://fbref.com.
Parameters1
Runs10
Updated3d ago
Operational10 runs · 100% 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_match_report?
Returns the final score, teams, date, venue, competition, attendance, managers, captains and officials for a specific match from https://fbref.com. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass match_id and get the result back without maintaining a scraper.
Response
{
"date": "<string>",
"stage": "<string>",
"title": "<string>",
"venue": "<string>",
"match_id": "<string>",
"metadata": {},
"away_team": {
"id": "<string>",
"name": "<string>",
"score": "<string>",
"record": "<string>",
"captain": "<string>",
"manager": "<string>",
"captain_id": "<string>",
"captain_url": "<string>",
"profile_url": "<string>"
},
"home_team": {
"id": "<string>",
"name": "<string>",
"score": "<string>",
"record": "<string>",
"captain": "<string>",
"manager": "<string>",
"captain_id": "<string>",
"captain_url": "<string>",
"profile_url": "<string>"
},
"officials": [
{
"name": "<string>",
"role": "<string>"
}
],
"attendance": "<string>",
"local_time": "<string>",
"report_url": "<string>",
"venue_time": "<string>",
"competition": "<string>",
"final_score": "<string>",
"venue_epoch": "<string>",
"date_display": "<string>",
"competition_id": "<string>",
"competition_url": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/b0409fd7-82bb-4c1c-b304-a5a31823a310/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "b0409fd7-82bb-4c1c-b304-a5a31823a310",
"variables": {
"match_id": "3f104bf2"
}
}'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="b0409fd7-82bb-4c1c-b304-a5a31823a310") — the "get_match_report" function, which returns the final score, teams, date, venue, competition, attendance, managers, captains and officials for a specific match from https://fbref.com.. It takes match_id (str). Return the result as structured JSON.