Marketplace
No threads yet
Live

get_ebasketball_match_results

betsapi.com

Retrieves completed eBasketball H2H GG League (4x5mins) match results from https://betsapi.com in reverse chronological order. It returns UTC date/time, teams, final scores, and source record links while iterating through 30-match pages.

Parameters2
Runs9
Updated10d ago
Degraded9 runs · 88.8% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is get_ebasketball_match_results?

Retrieves completed eBasketball H2H GG League (4x5mins) match results from https://betsapi.com in reverse chronological order. It returns UTC date/time, teams, final scores, and source record links while iterating through 30-match pages. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass start_page, page_count and get the result back without maintaining a scraper.

Response

{
  "league": "<string>",
  "matches": [
    {
      "away_team": "<string>",
      "home_team": "<string>",
      "match_url": "<string>",
      "away_score": 0,
      "home_score": 0,
      "final_score": "<string>",
      "away_team_url": "<string>",
      "date_time_utc": "<string>",
      "home_team_url": "<string>"
    }
  ],
  "source_url": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/e931a6a6-bdc3-4695-b151-0fe2db3c9523/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "e931a6a6-bdc3-4695-b151-0fe2db3c9523",
    "variables": {
        "start_page": 1,
        "page_count": 2
    }
}'

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="e931a6a6-bdc3-4695-b151-0fe2db3c9523") — the "get_ebasketball_match_results" function, which retrieves completed eBasketball H2H GG League (4x5mins) match results from https://betsapi.com in reverse chronological order. It returns UTC date/time, teams, final scores, and source record links while iterating through 30-match pages..

It takes start_page (int), page_count (int). Return the result as structured JSON.