Send Profile Visits
Sends 100 profile visits to the specified player's account.
This endpoint allows you to boost a player's profile visit count by 100 visits per request. The response includes information about the visits sent and the player's current profile status.
Note: Use this feature responsibly and avoid excessive requests.
Path parameters
-
The region code for the player's account:
sg
: Singapore regionind
: India regionbr
: Brazil region
Values are
sg
,ind
, orbr
.
Query parameters
-
The unique player User ID
Format should match the following pattern:
^\d{10,12}$
. -
Your API key from the developer portal
GET
/api/visit/{region}
curl \
--request GET 'https://api.freefirecommunity.com/api/visit/ind?uid=2180732447&key=YOUR_API_KEY'
Response examples (200)
{
"status": 1,
"response": {
"UID": "2129250963",
"PlayerLevel": 69,
"KeyExpiresAt": "2025-03-20T90:30:00.696969",
"PlayerNickname": "SOUNAVA 500K",
"VisitsSentByAPI": 100,
"KeyRemainingRequests": "69/100"
}
}
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 (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"
}