Constructors

Methods

  • Generates campaign data with a game title.

    Type Parameters

    • T

    Parameters

    • game_id: string
    • Optional data: object
    • Optional params: Record<string, any>

    Returns AxiosPromise<default<T>>

    promise

  • Get release competition statistics and Steam danger zones.

    This tool analyzes the 'ExternalGames' database to show how many other games are releasing around a specific date. It also overlays hard-coded Steam events like NextFest and Seasonal Sales.

    Type Parameters

    Parameters

    • Optional params: {
          precision?: "day" | "month" | "year";
          start_date?: string;
      }

      Filtering options:

      • precision: 'day' | 'month' | 'year' (Default: 'day'). Use 'month' for long-term planning.
      • start_date: 'YYYY-MM-DD'. The date to begin the analysis from.
      • Optional precision?: "day" | "month" | "year"
      • Optional start_date?: string

    Returns AxiosPromise<default<T>>

    AxiosPromise<Response>

    See

    https://api.glitch.fun/api/documentation#/ExternalGames/getReleaseStats

    Example

    Games.getReleaseStats({ precision: 'day', start_date: '2025-06-01' })
    .then(res => console.log(res.data.data));

Generated using TypeDoc