This API allows you to automatically send likes to Free Fire profiles using guest accounts.
Follow these steps to set up and run the API:
-
Clone this repository (if using Git):
git clone https://github.com/paulafredo/free-api-like-freefire cd free-api-like-freefire -
Create and activate a virtual environment (recommended):
python -m venv venv
- On Windows:
venv\Scripts\activate
- On Linux/macOS:
source venv/bin/activate
- On Windows:
-
Install Python dependencies: Make sure you have a
requirements.txtfile in your project directory. If not, you can generate it with:pip freeze > requirements.txtThen install the dependencies:
pip install -r requirements.txt
Typical dependencies include
Flask,aiohttp,requests,pycryptodome,cachetools,python-dotenv. -
Go to the config folder:
cd config -
Add your configuration JSON files: Inside the
configfolder, create the following files with your guest accounts:ind_config.jsonbr_config.jsoneurope_config.json
-
Run the Flask app:
flask run
Before using this API, you must create Free Fire guest accounts. Please refer to the previous tutorial video for detailed steps.
The API uses region-specific JSON files to manage guest accounts.
- Used for: Guest accounts from the India (IND) server.
- Format:
[
{
"uid": "YOUR_UID_1",
"password": "YOUR_PASSWORD_1"
},
{
"uid": "YOUR_UID_2",
"password": "YOUR_PASSWORD_2"
}
]-
Used for: Guest accounts from:
BR(Brazil)US(United States)SAC(South America)NA(North America)
-
Format: Same as above.
- Used for: Guest accounts from all other servers (e.g., Europe).
- Format: Same as above.
Replace
"YOUR_UID_X"and"YOUR_PASSWORD_X"with the actual Free Fire guest account credentials.
Description: Sends a "like" to a specific Free Fire profile.
Query Parameters:
uid(required): The numeric UID of the player to like.
GET /like?uid=1234567890This project was created by Paul Alfredo.
Feel free to check out his GitHub profile for more projects and contributions.