Free Fire Player ID Verification API

Automated Garena Free Fire player nickname lookup REST endpoint specification.

GET / POST
GATEWAY ENDPOINT URL
GET / POST https://ff-name-check-api.ffbdtopup.top/api/name-check?api=YOUR_API_KEY&uid=7757980728
Request Query Parameters
Parameter Type Required Description
api (or api_key) String REQUIRED Your active reseller API secret key (e.g. TPBD-XXXX-XXXX)
uid (or playerid) String / Int REQUIRED Garena Free Fire Player ID to verify (e.g. 7757980728)
url (optional) String OPTIONAL Custom HTTP POST Webhook Callback URL for instant asynchronous responses
SUCCESS RESPONSE (200 OK)
application/json
{
  "status": true,
  "data": {
    "status": true,
    "username": "★V I P   P L A Y E R★",
    "developer": "@DeVeRahmanOfficial"
  }
}
ERROR RESPONSE (400 / 401)
application/json
{
  "status": false,
  "data": {
    "message": "invalid or expire API",
    "developer": "@DeVeRahmanOfficial"
  }
}
Integration Code Snippets
curl -X GET "https://ff-name-check-api.ffbdtopup.top/api/name-check?api=YOUR_API_KEY&uid=7757980728"