All data is taken from fallguys.esportinfo.gg and fallguys.com
install package
npm install fallguys-api
require package in project
const fallguys = require('fallguys-api');
Get all achievements
Get all articles
Get all skins colors
Get all emotes
Get all nicknames
Get all nameplates
Get all items of a specific season pass
Get all Celebrations
Get all skins faces
Get all "free" (skins who don't need crown or kudos) skins
Get all skins patterns
Get all skins
Get daily skins
The name of the achievement (example: Fall Throttle)
the trophy name of the achievement (example: ACH_FALL_THROTTLE)
the description of the achievement (example: Reach terminal velocity)
the icon of the achievement (preview: )
the gray icon of the achievement (preview: )
The name of the article (example: 1/Fall Guys First Patch Notes)
The creation date of the article
The title of the article (example: Fall Guys Patch Notes 1.0)
The content of the article (in HTML)
The thumbnail of the article (preview: )
The description of the article (example: Fall Guys: First Patch, new level: Jump Showdown added and plenty of bugs fixed.)
The name of the skin (example: Raptor)
The img of the skin (preview: )
The rarity of the skin (all rarity: Legendary, Epic, Rare, Uncommon, Common)
Where the skin is obtainable (all acquire: Store, Starter, Rewards, DLC, Battle Pass, Leaked)
if acquire is DLC or Store you have the price and the currency (Crown, Kudos, USD)
if acquire is Battle Pass you have the season and the tier
The name of the skin (example: Raptor)
Add an id for detect daily store change (only on Daily)
The upper img of the skin (preview: )
The upper img of the skin (preview: )
The rarity of the skin (all rarity: Legendary, Epic, Rare, Uncommon, Common)
Where the skin is obtainable (all acquires: Store, Starter, Rewards, DLC, Battle Pass, Leaked)
if acquire is DLC or Store you have the price and the currency (Crown, Kudos, USD)
if acquire is Battle Pass you have the season and the tier
The array for all skin in the pc store
The array for all skin in the ps4 store
The name of the round (example: Dizzy Heights)
The description of the round
How to finish the round (for Team and Final type)
The size of the round (all sizes: Small, Medium, Large)
The type of the round (all types: Race, Survival, Team, Final);
The designer of the round (example: Joseph Juson)
The thumbnail of the round (preview: )
The background image of the round
The social share image of the round (preview: )
The blurred background image of the round (preview: )
The season of the season pass (example: 1)
All the items of the season pass
All the colors of the season pass
All the patterns of the season pass
All the skins of the season pass
All the faces of the season pass
All the currencys of the season pass
All the celebrations of the season pass
All the emotes of the season pass
All the nicknames of the season pass
All the nameplates of the season pass
const fallguys = require("fallguys-api");
let achievements = await fallguys.getAchievements();
achievements.getAchievement("ACH_FALL_THROTTLE");
let articles = await fallguys.getArticles();
articles.getArticle(0);
let colors = await fallguys.getColors();
colors.getColor("Bubblegum");
colors.getLegendaryColor("Bumblebee");
colors.getEpicColor("Steel");
colors.getRareColor("Raspberry");
colors.getUncommonColor("Bubblegum");
colors.getCommonColor("Beach Ball");
let daily = await fallguys.getDaily();
daily.pcStore[0];
daily.ps4Store[0];
daily.getFirstPCItem();
daily.getSecondPCItem();
daily.getThirdPCItem();
daily.getFirstPS4Item();
daily.getSecondPS4Item();
daily.getThirdPS4Item();
let rounds = await fallguys.getRounds();
rounds.getRound(0);
rounds.getRound("Dizzy Heights");