Get Craftland Map Information
Retrieves detailed information about a specific Craftland custom map.
This endpoint provides map details including:
- Map name and description
- Creator information
- Creation and update timestamps
- Likes and subscriptions
- Play time requirements
- And more
Note: The map code should be URL-encoded (e.g., %23
for #
).
Path parameters
-
The region code:
sg
: Singapore regionind
: India regionbr
: Brazil region
Values are
sg
,ind
, orbr
.
Query parameters
-
The Craftland map code (URL-encoded, e.g., %23FREEFIREMAPCODE6969)
-
Your API key from the developer portal
GET
/api/{region}/map
curl \
--request GET 'https://craftland-map-info.api.freefirecommunity.com/api/sg/map?code=%2523FREEFIREMAPCODE6969&key=YOUR_API_KEY'
Response examples (200)
{
"map_info": {
"uid": "13118106172",
"liked": 3,
"createAt": "1756209977",
"map_name": "SOLARA-MAP-1PLAYER",
"nickname": "Neo2A5g3Y5#6",
"description": "[b][C]SUBSCRIBE ~ [ff00ff] \\n[00ff00] [b][00ffff]WITH MANY FEATURES, [b][ffff00] [b][ff0000]YOUTUBE CHANNEL FOR MORE",
"maxPlayTime": 5,
"minPlayTime": 5,
"lastUpdateAt": "1756209977",
"subscriptions": 12
}
}
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": "Map not found",
"message": "The specified map code does not exist"
}
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"
}