get_football_match_details
pari.ruReturns full football match details and every available market for a specific event from https://pari.ru, including related sub-events such as halves and corners with their factors.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_football_match_details?
Returns full football match details and every available market for a specific event from https://pari.ru, including related sub-events such as halves and corners with their factors. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass event_id, language and get the result back without maintaining a scraper.
Response
{
"event": {},
"sport": {},
"source": "<string>",
"event_id": 0,
"sub_events": [
{}
],
"competition": {},
"sub_event_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/eaa29c7a-d910-46de-888f-a7aa3b806557/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "eaa29c7a-d910-46de-888f-a7aa3b806557",
"variables": {
"event_id": 0,
"language": "ru"
}
}'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="eaa29c7a-d910-46de-888f-a7aa3b806557") — the "get_football_match_details" function, which returns full football match details and every available market for a specific event from https://pari.ru, including related sub-events such as halves and corners with their factors.. It takes event_id (int), language (str). Return the result as structured JSON.