Get Game Assets and Images
Retrieves in-game images and icons from the Free Fire asset database.
This endpoint allows you to fetch various game assets including:
- Character avatars and skins
- Weapon skins and icons
- Items and equipment icons
- Badges and banners
- Pet images
- And more
Simply provide the icon name to retrieve the corresponding image.
Query parameters
-
The name of the icon/image to retrieve from the game database
-
Your API key from the developer portal
GET
/api/images
curl \
--request GET 'https://images.freefirecommunity.com/api/images?iconName=Icon_avatar_hair_cos_eggday2021_headwear_blue&key=YOUR_API_KEY'
Response examples (400)
{
"error": "Bad Request",
"status": 400,
"message": "Invalid region code. Please use 'sg', 'ind', or 'br'"
}
Response examples (401)
{
"error": "Unauthorized",
"status": 401,
"message": "Invalid API key. Please check your credentials or get a new key from http://developers.freefirecommunity.com/"
}
Response examples (404)
{
"error": "Image not found",
"message": "The requested icon name does not exist in the database"
}
Response examples (429)
{
"error": "Rate Limit Exceeded",
"status": 429,
"message": "Too many requests. Please slow down and try again later"
}
Response examples (500)
{
"error": "Internal Server Error",
"status": 500,
"message": "An error occurred while processing your request. Please check your UID and region, then try again"
}