Skip to content

vacocella/vlrgg-api

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

VLR.GG API

Unofficial REST API for vlr.gg


This API is currently hosted on a free cyclic server, please host it on your own server for prodcution use

Endpoints

For more detailed documentation, check the docs.

  • All responses are cached for 24hrs

/api/rankings/:region

  • Method: GET

  • Response:

    {
    "teams": [
      {
        "team_name": str,
        "team_logo": str,
        "team_url": str,
        "team_rank": str,
        "rating_score": str,
        "recent_match": {
          "match_url": str,
          "match_time": str,
          "opponent_team_name": str,
          "opponent_team_logo_url": str
        },
        "win_streak": str,
        "record": str,
        "total_winnings": str
      },
      ...
      ]
      }

/api/players

  • Method: GET

  • Response:

    {
    "players": [
      {
        "player_name": str,
        "player_link": str,
        "player_team_initials": str,
        "player_country_initials": str,
        "rounds_played": st,
        "rating": str,
        "average_combat_score": str,
        "kills_deaths": str,
        "kill_assist_trade_survive_percentage": str,
        "average_damage_per_round": str,
        "kills_per_round": str,
        "assists_per_round": str,
        "first_kills_per_round": str,
        "first_deaths_per_round": str,
        "headshot_percentage": str,
        "clutch_success_percentage": str,
        "max_kills_in_single_map": str,
        "kills": str,
        "deaths": str
      },
      ...
      ]
      }

/api/events

  • Method: GET
  • Response:
    {
    "events": [
      {
        "event_name": str,
        "event_logo": str,
        "event_url": str,
        "prize_pool": str,
        "dates": str,
        "region": str
      },
      ...
      ]
      }

/api/matches/upcoming

  • Method: GET
  • Response:
    {
    "matches": [
      {
        "team_one_name": str,
        "team_two_name": str,
        "match_url": str,
        "event_name": str,
        "event_icon_url": str,
        "match_time": str,
        "eta": str
      },
      ...
      ]
      }

/api/matches/results

  • Method: GET
  • Response:
    {
    "matches": [
      {
        "team_one_name": str,
        "team_two_name": str,
        "team_one_score": str,
        "team_two_score": str,
        "match_url": str,
        "event_name": str,
        "event_icon_url": str,
        "match_time": str,
        "eta": str
      },
      ...
      ]
      }

How to run locally

Prerequisites

  1. Clone the repository
  2. Run yarn install
  3. Run yarn build on the root directory
  4. Run npm dev

About

An unofficial REST API for vlr.gg

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 84.3%
  • TypeScript 15.7%