get_football_match_prices
pari.ruReturns current prices and source match fields for all upcoming and live football matches from https://pari.ru, including teams, start times, competitions, and basic market 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_prices?
Returns current prices and source match fields for all upcoming and live football matches from https://pari.ru, including teams, start times, competitions, and basic market factors. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass match_status, language and get the result back without maintaining a scraper.
Response
{
"source": "<string>",
"status": "<string>",
"matches": [
{}
],
"match_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/ba63ddbb-70ba-4883-93e5-a4acaa9d4b62/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "ba63ddbb-70ba-4883-93e5-a4acaa9d4b62",
"variables": {
"match_status": "all",
"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="ba63ddbb-70ba-4883-93e5-a4acaa9d4b62") — the "get_football_match_prices" function, which returns current prices and source match fields for all upcoming and live football matches from https://pari.ru, including teams, start times, competitions, and basic market factors.. It takes match_status (str), language (str). Return the result as structured JSON.