Endpoints
Use one GET endpoint for public integrations. Send all values as query parameters.
GET/like?uid=UID&server_name=bd&api_key=API_KEY&type=100
All request types require an API key, including free like:
/like?uid=UID&server_name=bd&api_key=API_KEY&type=freeParameters
| Name | Required | Values | Description |
|---|---|---|---|
uid | Yes | Free Fire UID | Target player UID. |
server_name | Yes | bd, ind, sg, my, pk, vn, th, me, br, us, sac, na | Target account server/region. |
api_key | Yes | Your API key | Required for 100, 200, and free like requests. |
type | Yes | 100, 200, free | Selects the like package. |
Limit Rules
| Type | Requested | Limit Cut Rule |
|---|---|---|
100 | 100 likes | Sent below 70 cuts 0. Sent 70 or more cuts 1. |
200 | 200 likes | Sent below 90 cuts 0. Sent 90-119 cuts 1. Sent 120 or more cuts 2. |
free | Configured free amount | Always cuts 0. |
Code Examples
Select a language. Replace UID and API_KEY with your own values.
JavaScript
fetch client
Python
requests
PHP
cURL extension
cURL
terminal
JavaScript Fetch
Success Response
JSON
{
"status": "success",
"endpoint": "like100",
"uid": "1668097182",
"server_name": "bd",
"requested": 100,
"likes_sent": 87,
"limit_cut": 1,
"remaining_today": 9,
"key_name": "Mitul"
}Error Responses
| Status | Meaning | Fix |
|---|---|---|
400 | Invalid type | Use 100, 200, or free. |
401 | Invalid API key | Check your key. |
429 | Daily or total limit reached | Wait for reset or contact provider. |
502 | Upstream like API error | Retry later. |