Check Player Ban Status
Checks if a Free Fire player account is currently banned or has an active ban period.
Headers
-
Your API key from the developer portal (Header method - Recommended).
Alternative: You can also pass the API key as a query parameter
?key=your_api_key
GET
/bancheck
curl \
--request GET 'https://developers.freefirecommunity.com/api/v1/bancheck?uid=665951869' \
--header "x-api-key: ffc_1234567890_abcdefghijk"
Response examples (200)
# Headers
X-RateLimit-Limit: 60
X-RateLimit-Remaining: 45
# Payload
{
"status": "string",
"data": {
"is_banned": 0,
"period": 42
}
}
Response examples (400)
{
"error": "string",
"message": "string",
"status": 42
}
Response examples (401)
{
"error": "string",
"message": "string",
"status": 42
}
Response examples (429)
{
"error": "string",
"message": "string",
"status": 42
}