Send Profile Visits

GET /api/visit/{region}

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

  • region string Required

    The region code for the player's account:

    • sg: Singapore region
    • ind: India region
    • br: Brazil region

    Values are sg, ind, or br.

Query parameters

  • uid string Required

    The unique player User ID

    Format should match the following pattern: ^\d{10,12}$.

  • key string Required

    Your API key from the developer portal

Responses

  • 200 application/json

    Visits successfully sent

    Hide response attributes Show response attributes object
    • response object
      Hide response attributes Show response attributes object
      • KeyExpiresAt string

        API key expiration timestamp

      • KeyRemainingRequests string

        Remaining requests for this API key

      • VisitsSentByAPI integer

        Number of visits sent (usually 100)

      • PlayerLevel integer

        Target player's level

      • PlayerNickname string

        Target player's nickname

      • UID string

        Target player's UID

    • status integer

      Status code (1 = success)

  • 400 application/json

    Bad request - Invalid parameters or missing required fields

    Hide response attributes Show response attributes object
    • error string

      Error type or code

    • message string

      Detailed error message

    • status integer

      HTTP status code

  • 401 application/json

    Unauthorized - Invalid or missing API key

    Hide response attributes Show response attributes object
    • error string

      Error type or code

    • message string

      Detailed error message

    • status integer

      HTTP status code

  • 429 application/json

    Too many requests - Rate limit exceeded

    Hide response attributes Show response attributes object
    • error string

      Error type or code

    • message string

      Detailed error message

    • status integer

      HTTP status code

  • 500 application/json

    Internal server error - Something went wrong on our end

    Hide response attributes Show response attributes object
    • error string

      Error type or code

    • message string

      Detailed error message

    • status integer

      HTTP status code

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"
}