Skip to content

xanning/Plancke-Wrapper-API

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Plancke-Wrapper-API

A NodeJS app that scrapes Plancke for player data, and exposes an API to access them.

Useful for your projects where you don't want to / can't use a Hypixel API key.

Warning

Keep in mind that if Plancke changes stuff on their end, this will break.

Features

Scrapes Plancke stats page for Player data, gathers all the information it can, and returns it as JSON.

Endpoints

localhost:port/stats/<username/uuid> player info & statistics

localhost:port/player/<username/uuid> player info

Installing

  • Clone the repo

  • Create an .env file and paste these below, edit to your liking.

CACHE_TTL = 120000 # Cache time-to-live in milliseconds
HOST = 0.0.0.0
PORT = 3000
  • Install dependencies with npm install

  • Run the app, node app.js

  • It'll give you the app adress that you can start using the endpoints of.

Issues

  • Proxy support was not tested and not finished, i dont know if it works or not.

  • It's as real-time as Plancke is, minus the local cache time you set.

  • Some stats in the json are weirdly placed, but Bedwars, Skywars,and Duels (mainstream modes) are as it should be.

  • It has all the information the Plancke page has (except Social Media and Online status which will be added soon), might has incomplete stuff as compared to the normal Hypixel API (e.g: beds_lost)

todo (soon) (maybe) (idk)

  • add /leaderboard endpoint

  • add social media & online status to /player & /stats

Example response (json)
{
  "cached": false,
  "playerId": "Wallibear",
  "playerInfo": {
    "multiplier": "YOUTUBER (x7)",
    "level": "224.68",
    "karma": "28,926,775",
    "achievement_points": "5,120",
    "quests_completed": "2,952",
    "ranks_gifted": "108",
    "first_login": "2013-08-07 03:57 EDT",
    "displayname": "[YOUTUBE] Wallibear [GANG]"
  },
  "modes": {
    "Arcade": {
      "General": {
        "coins": "927,586",
        "kills_blocking_dead": "0",
        "kills_dragonwars": "0",
        "kills_bounty_hunter": "38",
        "kills_throw_out": "0",
        "poop_collected": "21",
        "headshots_blocking_dead": "0",
        "wins_blocking_dead": "0",
        "wins_dragonwars": "0",
        "wins_enderspleef": "0",
        "wins_farm_hunt": "8",
        "wins_bounty_hunter": "0",
        "wins_party_games": "17",
        "wins_throw_out": "0",
        "wins_hole_in_the_wall": "2",
        "hitw_highest_score_qualifications": "134",
        "hitw_highest_score_finals": "112",
        "wins_hypixel_says": "0",
        "wins_mini_walls": "2",
        "gw_kills": "0",
        "gw_empire_kills": "0",
        "gw_rebel_kills": "0",
        "gw_deaths": "0",
        "gw_shots_fired": "0",
        "seeker_wins": "0",
        "hider_wins": "0",
        "party_pooper_seeker_wins": "0",
        "party_pooper_hider_wins": "0",
        "fastest_game": "86.31s",
        "games_played": "1",
        "wins": "0",
        "win_ratio": "0",
        "flawless_game": "0",
        "fails": "7",
        "accuracy": "74%",
        "head_shot_accuracy": "55.0%"
      },
      "Normal": {
        "wins": "0",
        "games_played": "2",
        "w_l": "0",
        "powerups_collected": "0"
      },
      "Hyper": {
        "wins": "0",
        "games_played": "0",
        "w_l": "0",
        "powerups_collected": "0"
      },
      "AlienArcadium": {
        "downs": "0",
        "revives": "0",
        "doors_opened": "0",
        "windows_repaired": "0",
        "zombies_killed": "0",
        "deaths": "0",
        "best_round": "0"
      },
      "BadBlood": {
        "downs": "0",
        "revives": "2",
        "doors_opened": "3",
        "windows_repaired": "23",
        "zombies_killed": "178",
        "deaths": "0",
        "best_round": "30"
      },
      "DeadEnd": {
        "downs": "0",
        "revives": "0",
        "doors_opened": "0",
        "windows_repaired": "0",
        "zombies_killed": "0",
        "deaths": "0",
        "best_round": "0"
      },
      "Basic": {
        "col_1": "47"
      },
      "PigZombie": {
        "col_1": "8"
      },
      "Slime": {
        "col_1": "2"
      },
      "SlimeZombie": {
        "col_1": "5"
      },
      "Witch": {
        "col_1": "12"
      },
      "WitherSkeleton": {
        "col_1": "19"
      },
      "WitherZombie": {
        "col_1": "16"
      },
      "Wolf": {
        "col_1": "10"
      }
    },
    "BedWars": {
      "General": {
        "tokens": "2,434,224",
        "winstreak": "0",
        "prestige": null,
        "level": "1,320",
        "diamonds_collected": "176,915",
        "emeralds_collected": "84,160",
        "gold_collected": "719,753",
        "iron_collected": "4,589,513",
        "bed_sheets": "500",
        "ender_dust": "500",
        "iron_nugget": "500",
        "silver_coins": "500",
        "soul": "500",
        "token_of_ferocity": "500",
        "cable": "500",
        "gold_bar": "500",
        "proof_of_success": "500",
        "timeworn_mystery_box": "500",
        "diamond_fragment": "500",
        "comfy_pillow": "286"
      },
      "Solo": {
        "kills": "32,929",
        "deaths": "21,896",
        "kd_ratio": "1.50",
        "final_kills": "29,062",
        "final_deaths": "8,644",
        "final_kd_ratio": "3.36",
        "wins": "6,025",
        "losses": "9,031",
        "win_loss_ratio": "0.67",
        "beds_broken": "29,778"
      },
      "Doubles": {
        "kills": "4,818",
        "deaths": "3,244",
        "kd_ratio": "1.49",
        "final_kills": "3,075",
        "final_deaths": "1,039",
        "final_kd_ratio": "2.96",
        "wins": "530",
        "losses": "1,031",
        "win_loss_ratio": "0.51",
        "beds_broken": "1,609"
      },
      "3v3v3v3": {
        "kills": "2,927",
        "deaths": "3,086",
        "kd_ratio": "0.95",
        "final_kills": "1,170",
        "final_deaths": "813",
        "final_kd_ratio": "1.44",
        "wins": "416",
        "losses": "767",
        "win_loss_ratio": "0.54",
        "beds_broken": "612"
      },
      "4v4v4v4": {
        "kills": "7,859",
        "deaths": "6,560",
        "kd_ratio": "1.20",
        "final_kills": "3,766",
        "final_deaths": "1,735",
        "final_kd_ratio": "2.17",
        "wins": "1,158",
        "losses": "1,688",
        "win_loss_ratio": "0.69",
        "beds_broken": "1,611"
      },
      "CoreModes": {
        "kills": "48,533",
        "deaths": "34,786",
        "kd_ratio": "1.40",
        "final_kills": "37,073",
        "final_deaths": "12,231",
        "final_kd_ratio": "3.03",
        "wins": "8,129",
        "losses": "12,517",
        "win_loss_ratio": "0.65",
        "beds_broken": "33,610"
      },
      "4v4": {
        "kills": "22",
        "deaths": "13",
        "kd_ratio": "1.69",
        "final_kills": "16",
        "final_deaths": "2",
        "final_kd_ratio": "8",
        "wins": "8",
        "losses": "3",
        "win_loss_ratio": "2.67",
        "beds_broken": "2"
      },
      "RushSolo": {
        "kills": "0",
        "deaths": "0",
        "kd_ratio": "-",
        "final_kills": "0",
        "final_deaths": "0",
        "final_kd_ratio": "-",
        "wins": "0",
        "losses": "0",
        "win_loss_ratio": "-",
        "beds_broken": "0"
      },
      "RushDoubles": {
        "kills": "25",
        "deaths": "31",
        "kd_ratio": "0.81",
        "final_kills": "24",
        "final_deaths": "11",
        "final_kd_ratio": "2.18",
        "wins": "5",
        "losses": "11",
        "win_loss_ratio": "0.45",
        "beds_broken": "14"
      },
      "Rush4v4v4v4": {
        "kills": "23",
        "deaths": "30",
        "kd_ratio": "0.77",
        "final_kills": "23",
        "final_deaths": "4",
        "final_kd_ratio": "5.75",
        "wins": "6",
        "losses": "4",
        "win_loss_ratio": "1.5",
        "beds_broken": "17"
      },
      "UltimateSolo": {
        "kills": "0",
        "deaths": "0",
        "kd_ratio": "-",
        "final_kills": "0",
        "final_deaths": "0",
        "final_kd_ratio": "-",
        "wins": "0",
        "losses": "0",
        "win_loss_ratio": "-",
        "beds_broken": "0"
      },
      "UltimateDoubles": {
        "kills": "31",
        "deaths": "23",
        "kd_ratio": "1.35",
        "final_kills": "30",
        "final_deaths": "11",
        "final_kd_ratio": "2.73",
        "wins": "6",
        "losses": "11",
        "win_loss_ratio": "0.55",
        "beds_broken": "15"
      },
      "Ultimate4v4v4v4": {
        "kills": "19",
        "deaths": "35",
        "kd_ratio": "0.54",
        "final_kills": "35",
        "final_deaths": "12",
        "final_kd_ratio": "2.92",
        "wins": "10",
        "losses": "10",
        "win_loss_ratio": "1",
        "beds_broken": "24"
      },
      "LuckyDoubles": {
        "kills": "3,257",
        "deaths": "1,375",
        "kd_ratio": "2.37",
        "final_kills": "1,962",
        "final_deaths": "548",
        "final_kd_ratio": "3.58",
        "wins": "218",
        "losses": "585",
        "win_loss_ratio": "0.37",
        "beds_broken": "1,137"
      },
      "Lucky4v4v4v4": {
        "kills": "46",
        "deaths": "22",
        "kd_ratio": "2.09",
        "final_kills": "35",
        "final_deaths": "7",
        "final_kd_ratio": "5",
        "wins": "13",
        "losses": "5",
        "win_loss_ratio": "2.6",
        "beds_broken": "14"
      },
      "Castle": {
        "kills": "38",
        "deaths": "74",
        "kd_ratio": "0.51",
        "final_kills": "29",
        "final_deaths": "7",
        "final_kd_ratio": "4.14",
        "wins": "19",
        "losses": "11",
        "win_loss_ratio": "1.73",
        "beds_broken": "5"
      },
      "Capture": {
        "kills": "0",
        "deaths": "0",
        "kd_ratio": "-",
        "final_kills": "0",
        "final_deaths": "0",
        "final_kd_ratio": "-",
        "wins": "0",
        "losses": "0",
        "win_loss_ratio": "-",
        "beds_broken": "0"
      },
      "SwapDoubles": {
        "kills": "91",
        "deaths": "48",
        "kd_ratio": "1.90",
        "final_kills": "70",
        "final_deaths": "13",
        "final_kd_ratio": "5.38",
        "wins": "11",
        "losses": "13",
        "win_loss_ratio": "0.85",
        "beds_broken": "41"
      },
      "Swap4v4v4v4": {
        "kills": "0",
        "deaths": "0",
        "kd_ratio": "-",
        "final_kills": "0",
        "final_deaths": "0",
        "final_kd_ratio": "-",
        "wins": "0",
        "losses": "0",
        "win_loss_ratio": "-",
        "beds_broken": "0"
      },
      "Voidless4v4v4v4": {
        "kills": "2",
        "deaths": "3",
        "kd_ratio": "0.67",
        "final_kills": "7",
        "final_deaths": "2",
        "final_kd_ratio": "3.5",
        "wins": "1",
        "losses": "2",
        "win_loss_ratio": "0.5",
        "beds_broken": "3"
      },
      "Overall": {
        "kills": "48,555",
        "deaths": "34,799",
        "kd_ratio": "1.40",
        "final_kills": "37,089",
        "final_deaths": "12,233",
        "final_kd_ratio": "3.03",
        "wins": "8,137",
        "losses": "12,520",
        "win_loss_ratio": "0.65",
        "beds_broken": "33,612"
      }
    },
    "BuildBattle": {
      "General": {
        "score": "70"
      },
      "Solo": {
        "wins": "0"
      },
      "Team": {
        "wins": "0"
      },
      "GuesstheBuild": {
        "wins": "0"
      },
      "ProMode": {
        "wins": "0"
      }
    },
    "BlitzSurvivalGames": {
      "General": {
        "coins": "185,016",
        "kills": "15",
        "deaths": "43",
        "wins_solo": "1",
        "wins_team": "0",
        "kill_death_ratio": "0.35",
        "kills_game": "0.34"
      },
      "Knight": {
        "level": "II",
        "exp": "8",
        "prestige": "-",
        "wins": "0",
        "losses": "3",
        "w_l_ratio": "0",
        "kills": "2",
        "time_played": "0h3m28s"
      }
    },
    "CopsandCrims": {
      "General": {
        "coins": "172,460",
        "total_kills": "0",
        "headshots": "0",
        "deaths": "0",
        "game_wins": "0",
        "round_wins": "0",
        "shots_fired": "0",
        "cop_kills": "0",
        "criminal_kills": "0",
        "deathmatch_kills": "0",
        "bombs_planted": "0",
        "bombs_defused": "0"
      }
    },
    "Duels": {
      "General": {
        "tokens": "654,051",
        "kills": "170",
        "deaths": "68",
        "kill_death_ratio": "2.5",
        "wins": "214",
        "losses": "87",
        "win_loss_ratio": "2.46",
        "arrows_shot": "22,096",
        "arrows_hit": "8,243",
        "arrow_hit_miss_ratio": "0.37",
        "melee_swings": "73,607",
        "melee_hits": "33,596",
        "melee_hit_miss_ratio": "0.46"
      },
      "UHCTournament": {
        "kills": "0",
        "deaths": "1",
        "k_d": "0",
        "wins": "0",
        "losses": "1",
        "w_l": "0",
        "melee_h_m": "0.19",
        "bow_h_m": "0"
      },
      "SWTournament": {
        "kills": "0",
        "deaths": "1",
        "k_d": "0",
        "wins": "0",
        "losses": "1",
        "w_l": "0",
        "melee_h_m": "0.31",
        "bow_h_m": "0"
      },
      "SumoTournament": {
        "kills": "1",
        "deaths": "1",
        "k_d": "1",
        "wins": "0",
        "losses": "1",
        "w_l": "0",
        "melee_h_m": "0.34",
        "bow_h_m": "0"
      },
      "UHC1v1": {
        "kills": "3",
        "deaths": "11",
        "k_d": "0.27",
        "wins": "3",
        "losses": "11",
        "w_l": "0.27",
        "melee_h_m": "0.40",
        "bow_h_m": "0.40"
      },
      "SkyWars1v1": {
        "kills": "0",
        "deaths": "1",
        "k_d": "0",
        "wins": "0",
        "losses": "1",
        "w_l": "0",
        "melee_h_m": "0.41",
        "bow_h_m": "0.67"
      },
      "Bow1v1": {
        "kills": "27",
        "deaths": "5",
        "k_d": "5.4",
        "wins": "27",
        "losses": "5",
        "w_l": "5.4",
        "melee_h_m": "0",
        "bow_h_m": "0.31"
      },
      "Sumo1v1": {
        "kills": "19",
        "deaths": "16",
        "k_d": "1.19",
        "wins": "20",
        "losses": "16",
        "w_l": "1.25",
        "melee_h_m": "0.52",
        "bow_h_m": "0"
      },
      "Classic1v1": {
        "kills": "120",
        "deaths": "32",
        "k_d": "3.75",
        "wins": "124",
        "losses": "32",
        "w_l": "3.88",
        "melee_h_m": "0.45",
        "bow_h_m": "0.46"
      },
      "Bridge1v1": {
        "kills": "365",
        "deaths": "392",
        "k_d": "0.93",
        "wins": "35",
        "losses": "19",
        "w_l": "1.84",
        "melee_h_m": "0.53",
        "bow_h_m": "0.43"
      },
      "Bridge3v3": {
        "kills": "0",
        "deaths": "0",
        "k_d": "0",
        "wins": "5",
        "losses": "0",
        "w_l": "5",
        "melee_h_m": "0.46",
        "bow_h_m": "0.38"
      }
    },
    "MegaWalls": {
      "General": {
        "coins": "155,294",
        "kills": "1",
        "assists": "0",
        "deaths": "11",
        "final_kills": "0",
        "final_assists": "0",
        "final_deaths": "0",
        "wins": "0",
        "losses": "1",
        "kill_death_ratio": "0.09",
        "fk_death_ratio": "-",
        "win_loss_ratio": "0",
        "wither_damage": "0",
        "defending_kills": "0"
      },
      "Zombie": {
        "points": "0",
        "wins": "0",
        "fks": "0",
        "fas": "0",
        "fds": "0",
        "fk_fd": "-",
        "kills": "1",
        "deaths": "11",
        "k_d": "0.09",
        "upgrades": "55222",
        "prestige": "0",
        "ender_chest": "0"
      },
      "Normal": {
        "kills": "0",
        "deaths": "0",
        "k_d": "-",
        "wins": "0",
        "losses": "0"
      },
      "FaceoffMode": {
        "kills": "0",
        "deaths": "0",
        "k_d": "-",
        "wins": "0",
        "losses": "0"
      },
      "CasualBrawl": {
        "kills": "0",
        "deaths": "0",
        "k_d": "-",
        "wins": "0",
        "losses": "0"
      }
    },
    "MurderMystery": {
      "General": {
        "tokens": "714,512"
      },
      "Classic": {
        "wins": "3",
        "kills": "0",
        "bow_kills": "0",
        "knife_kills": "0",
        "thrown_knife_kills": "0",
        "fastest_murderer_win": "0s",
        "fastest_detective_win": "0s"
      },
      "Assassins": {
        "wins": "1",
        "kills": "6",
        "bow_kills": "0",
        "knife_kills": "6",
        "thrown_knife_kills": "0",
        "fastest_murderer_win": "N/A",
        "fastest_detective_win": "N/A"
      },
      "DoubleUp": {
        "wins": "2",
        "kills": "1",
        "bow_kills": "1",
        "knife_kills": "0",
        "thrown_knife_kills": "0",
        "fastest_murderer_win": "N/A",
        "fastest_detective_win": "N/A"
      },
      "InfectionV2": {
        "wins": "0",
        "kills_as_survivor": "0",
        "kills_as_infected": "0"
      },
      "Hardcore": {
        "wins": "0",
        "kills": "0",
        "bow_kills": "0",
        "knife_kills": "0",
        "thrown_knife_kills": "0",
        "fastest_murderer_win": "0s",
        "fastest_detective_win": "0s"
      },
      "Showdown": {
        "wins": "0",
        "kills": "0",
        "bow_kills": "0",
        "knife_kills": "0",
        "thrown_knife_kills": "0",
        "fastest_murderer_win": "0s",
        "fastest_detective_win": "0s"
      }
    },
    "SkyWars": {
      "General": {
        "level": "7",
        "prestige": null,
        "coins": "252,268",
        "tokens": "1,038,000",
        "kills": "503",
        "assists": "70",
        "deaths": "395",
        "kill_death_ratio": "1.27",
        "wins": "57",
        "losses": "383",
        "win_loss_ratio": "0.15",
        "blocks_broken": "227",
        "blocks_placed": "5,294",
        "soul_well_uses": "45",
        "soul_well_legendaries": "4",
        "soul_well_rares": "6",
        "paid_souls": "100",
        "souls_gathered": "324",
        "eggs_thrown": "615",
        "enderpearls_thrown": "94",
        "arrows_shot": "0",
        "arrows_hit": "0",
        "arrow_hit_miss_ratio": "-"
      },
      "Ranked": {
        "kills": "0",
        "deaths": "0",
        "k_d": "0",
        "wins": "0",
        "losses": "0",
        "w_l": "0"
      },
      "SoloNormal": {
        "kills": "16",
        "deaths": "16",
        "k_d": "1",
        "wins": "1",
        "losses": "16",
        "w_l": "0.06"
      },
      "SoloInsane": {
        "kills": "335",
        "deaths": "291",
        "k_d": "1.15",
        "wins": "33",
        "losses": "292",
        "w_l": "0.11"
      },
      "TeamNormal": {
        "kills": "0",
        "deaths": "1",
        "k_d": "0",
        "wins": "0",
        "losses": "1",
        "w_l": "0"
      },
      "TeamInsane": {
        "kills": "152",
        "deaths": "87",
        "k_d": "1.75",
        "wins": "23",
        "losses": "74",
        "w_l": "0.31"
      },
      "MegaNormal": {
        "kills": "0",
        "deaths": "0",
        "k_d": "0",
        "wins": "0",
        "losses": "0",
        "w_l": "0"
      },
      "MegaDoubles": {
        "kills": "0",
        "deaths": "0",
        "k_d": "0",
        "wins": "0",
        "losses": "0",
        "w_l": "0"
      }
    },
    "SmashHeroes": {
      "General": {
        "coins": "175,780",
        "smash_level": "0"
      }
    },
    "SpeedUHC": {
      "General": {
        "coins": "50,680",
        "kills": "0",
        "deaths": "0",
        "wins": "0",
        "losses": "0",
        "kill_death_ratio": "-",
        "win_loss_ratio": "-"
      }
    },
    "TNTGames": {
      "General": {
        "coins": "165,714",
        "tnt_run_wins": "1",
        "tnt_run_record": "05:21",
        "pvp_run_wins": "0",
        "pvp_run_kills": "1",
        "pvp_run_record": "02:19",
        "tntag_wins": "1",
        "bowspleef_wins": "1",
        "bowspleef_losses": "6",
        "wizards_kills": "0",
        "wizards_deaths": "4",
        "wizards_wins": "0",
        "kill_death_ratio_wizards": "0"
      }
    },
    "UHCChampions": {
      "General": {
        "coins": "133,327",
        "score": "370"
      },
      "Solo": {
        "kills": "21",
        "deaths": "31",
        "wins": "0",
        "kill_death_ratio": "0.68",
        "heads_eaten": "17"
      },
      "Team": {
        "kills": "119",
        "deaths": "72",
        "wins": "23",
        "kill_death_ratio": "1.65",
        "heads_eaten": "78"
      },
      "RedvsBlue": {
        "kills": "0",
        "deaths": "0",
        "wins": "0",
        "kill_death_ratio": "-",
        "heads_eaten": "0"
      },
      "NoDiamonds": {
        "kills": "0",
        "deaths": "0",
        "wins": "0",
        "kill_death_ratio": "-",
        "heads_eaten": "0"
      },
      "VanillaDoubles": {
        "kills": "0",
        "deaths": "0",
        "wins": "0",
        "kill_death_ratio": "-",
        "heads_eaten": "0"
      },
      "Brawl": {
        "kills": "0",
        "deaths": "0",
        "wins": "0",
        "kill_death_ratio": "-",
        "heads_eaten": "0"
      },
      "SoloBrawl": {
        "kills": "0",
        "deaths": "0",
        "wins": "0",
        "kill_death_ratio": "-",
        "heads_eaten": "0"
      },
      "DuoBrawl": {
        "kills": "0",
        "deaths": "0",
        "wins": "0",
        "kill_death_ratio": "-",
        "heads_eaten": "0"
      },
      "Total": {
        "kills": "140",
        "deaths": "103",
        "wins": "23",
        "kill_death_ratio": "1.36",
        "heads_eaten": "95"
      }
    },
    "Warlords": {
      "General": {},
      "Mage": {
        "level": "0",
        "wins": "0",
        "damage": "0",
        "prevent_absorb": "0",
        "healing": "0",
        "total": "0"
      },
      "Warrior": {
        "level": "0",
        "wins": "0",
        "damage": "0",
        "prevent_absorb": "0",
        "healing": "0",
        "total": "0"
      },
      "Paladin": {
        "level": "0",
        "wins": "0",
        "damage": "0",
        "prevent_absorb": "0",
        "healing": "0",
        "total": "0"
      },
      "Shaman": {
        "level": "0",
        "wins": "0",
        "damage": "0",
        "prevent_absorb": "0",
        "healing": "0",
        "total": "0"
      }
    },
    "WoolGames": {
      "General": {},
      "Tank": {
        "kills": "0",
        "blocks_broken": "0",
        "wool_placed": "0"
      },
      "Assault": {
        "kills": "0",
        "blocks_broken": "0",
        "wool_placed": "0"
      },
      "Archer": {
        "kills": "1",
        "blocks_broken": "10",
        "wool_placed": "8"
      },
      "Swordsman": {
        "kills": "4",
        "blocks_broken": "1",
        "wool_placed": "0"
      },
      "Golem": {
        "kills": "0",
        "blocks_broken": "0",
        "wool_placed": "0"
      },
      "Engineer": {
        "kills": "0",
        "blocks_broken": "0",
        "wool_placed": "0"
      }
    },
    "ArenaBrawl": {
      "General": {
        "coins": "121,215"
      },
      "1v1": {
        "kills": "0",
        "deaths": "0",
        "wins": "0",
        "losses": "0",
        "k_d": "-",
        "w_l": "-"
      },
      "2v2": {
        "kills": "0",
        "deaths": "0",
        "wins": "0",
        "losses": "0",
        "k_d": "-",
        "w_l": "-"
      },
      "4v4": {
        "kills": "0",
        "deaths": "0",
        "wins": "0",
        "losses": "0",
        "k_d": "-",
        "w_l": "-"
      }
    },
    "Paintball": {
      "General": {
        "coins": "279,381",
        "force_field_time": "0h0m0s",
        "kills": "381",
        "deaths": "346",
        "killstreaks": "18",
        "shots_fired": "7,103",
        "wins": "12",
        "kill_death_ratio": "1.10",
        "shots_kill_ratio": "18.64"
      }
    },
    "Quake": {
      "General": {
        "coins": "150,851",
        "highest_killstreak": "13",
        "dash_cooldown": "1",
        "godlikes": "0"
      },
      "Solo": {
        "kills": "322",
        "deaths": "255",
        "wins": "7",
        "k_d": "1.26",
        "headshots": "98",
        "killstreaks": "10",
        "h_k": "0.32",
        "kills_shot": "0.48"
      },
      "Team": {
        "kills": "125",
        "deaths": "55",
        "wins": "5",
        "k_d": "2.27",
        "headshots": "48",
        "killstreaks": "10",
        "h_k": "0.38",
        "kills_shot": "0.48"
      }
    },
    "TurboKartRacers": {
      "General": {
        "coins": "116,778",
        "grand_prix_tokens": "0",
        "current_kart": null,
        "gold_trophies": "0",
        "silver_trophies": "0",
        "bronze_trophies": "0",
        "total_laps": "3",
        "coins_picked_up": "12",
        "powerups_picked_up": "8"
      }
    },
    "VampireZ": {
      "General": {
        "coins": "136,709",
        "human_kills": "2",
        "human_deaths": "4",
        "human_wins": "0",
        "zombie_kills": "98",
        "vampire_kills": "13",
        "vampire_deaths": "7",
        "kill_death_ratio_vampire": "0.29",
        "kill_death_ratio_human": "3.25"
      }
    },
    "Walls": {
      "General": {
        "coins": "131,695",
        "kills": "26",
        "deaths": "14",
        "wins": "7",
        "losses": "4",
        "kill_death_ratio": "1.86",
        "win_loss_ratio": "1.75"
      }
    },
    "CrazyWalls": {
      "General": {
        "coins": "47,835",
        "kills": "0",
        "deaths": "0",
        "wins": "0",
        "kill_death_ratio": "-"
      },
      "SoloNormal": {
        "kills": "0",
        "deaths": "0",
        "wins": "0",
        "k_d": "-"
      },
      "SoloLucky": {
        "kills": "0",
        "deaths": "0",
        "wins": "0",
        "k_d": "-"
      },
      "TeamNormal": {
        "kills": "0",
        "deaths": "0",
        "wins": "0",
        "k_d": "-"
      },
      "TeamLucky": {
        "kills": "0",
        "deaths": "0",
        "wins": "0",
        "k_d": "-"
      }
    },
    "SkyClash": {
      "General": {
        "coins": "405",
        "wins": "0",
        "kills": "0",
        "assists": "0",
        "deaths": "0",
        "k_d": "-"
      }
    }
  },
  "scrapedAt": "2000-01-01T00:00:00.004Z"
}

About

A NodeJS app that scrapes Plancke for player data, and exposes an API to access them.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published