Skins

Get All Skins#

You can access the list of skins grouped by type using the /skins endpoint.

https://fallguysapi.com/api/skins/
[
  {
    "celebration": [],
    "color": [],
    "emote": [],
    "face": [],
    "lower": [],
    "pattern": [],
    "upper": []
  }
]

Get Skins by Type#

You can get skins by type by adding the type as a parameter: /skins/upper

https://fallguysapi.com/api/skins/upper
[
  {
    "_id": "5f315e67d098522e444a654d",
    "name": "Topsy",
    "slug": "Topsy",
    "icon": "https://cdn.esportinfo.gg/fallguy/img/skins/Topsy-Upper-icon.png",
    "price": 3500,
    "currency": "Kudos",
    "rarity": "Uncommon",
    "acquire": "Store",
    "image": "https://cdn.esportinfo.gg/fallguy/img/skins/Topsy-Upper.png",
    "description": null,
    "type": "upper"
  }
  // ...
]

Get a Single Skin#

You can get a single skin by adding the id as a parameter: /skins/upper/5f315e67d098522e444a654d

https://fallguysapi.com/api/skins/upper/5f315e67d098522e444a654d
{
  "_id": "5f315e67d098522e444a654d",
  "name": "Topsy",
  "slug": "Topsy",
  "icon": "https://cdn.esportinfo.gg/fallguy/img/skins/Topsy-Upper-icon.png",
  "price": 3500,
  "currency": "Kudos",
  "rarity": "Uncommon",
  "acquire": "Store",
  "image": "https://cdn.esportinfo.gg/fallguy/img/skins/Topsy-Upper.png",
  "description": null,
  "type": "upper"
}
Edit on GitHub
Made with ❤️ by Eli José Carrasquero