Marketplace
No threads yet
Live

get_fantasy_overview

hltv.org

Returns the current fantasy season and every available fantasy event from https://hltv.org with state, participating teams, winners, prizes, and leaderboards.

Parameters0
Runs7
Updated52m ago
Degraded7 runs · 57.1% 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_fantasy_overview?

Returns the current fantasy season and every available fantasy event from https://hltv.org with state, participating teams, winners, prizes, and leaderboards. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — call it with no parameters and get the result back without maintaining a scraper.

Response

{
  "events": [
    {
      "name": "<string>",
      "month": "<string>",
      "state": {
        "status": "<string>",
        "winner": "<string>",
        "source_type": "<string>"
      },
      "enabled": true,
      "category": "<string>",
      "event_url": "<string>",
      "fantasy_id": 0,
      "description": "<string>",
      "month_state": "<string>",
      "logo_url_day": "<string>",
      "logo_url_night": "<string>",
      "participating_teams": [
        {
          "name": "<string>",
          "slug": "<string>",
          "team_id": 0,
          "team_url": "<string>",
          "logo_url_day": "<string>",
          "logo_url_night": "<string>"
        }
      ]
    }
  ],
  "source_url": "<string>",
  "prize_tiers": [
    {
      "amount": "<string>",
      "placement": 0
    }
  ],
  "season_name": "<string>",
  "total_events": 0,
  "season_months": [
    {
      "month": "<string>",
      "state": "<string>",
      "event_count": 0
    }
  ],
  "season_finished": true,
  "leaderboard_offset": 0,
  "season_event_count": 0,
  "season_leaderboard": [
    {
      "prize": {
        "color": "<string>",
        "amount": "<string>",
        "tied_with_others": true
      },
      "user_id": 0,
      "flag_url": "<string>",
      "username": "<string>",
      "placement": 0,
      "live_points": 0,
      "season_points": 0,
      "user_profile_url": "<string>",
      "leagues_participated": 0
    }
  ],
  "partner_event_count": 0,
  "points_distribution": [
    {
      "season_points_awarded": 0,
      "top_placement_percentage": "<string>"
    }
  ],
  "celebrity_leaderboard": [
    {
      "prize": {
        "color": "<string>",
        "amount": "<string>",
        "tied_with_others": true
      },
      "user_id": 0,
      "flag_url": "<string>",
      "username": "<string>",
      "placement": 0,
      "live_points": 0,
      "twitter_url": "<string>",
      "season_points": 0,
      "user_profile_url": "<string>",
      "leagues_participated": 0
    }
  ],
  "estimated_end_time_ms": 0,
  "estimated_end_time_utc": "<string>",
  "total_entries_in_season": 0,
  "finished_games_in_season": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/79e6f25a-1948-48ea-88f3-b60f7465aa04/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "79e6f25a-1948-48ea-88f3-b60f7465aa04",
    "variables": {}
}'

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="79e6f25a-1948-48ea-88f3-b60f7465aa04") — the "get_fantasy_overview" function, which returns the current fantasy season and every available fantasy event from https://hltv.org with state, participating teams, winners, prizes, and leaderboards..

It takes no parameters. Return the result as structured JSON.