Free Fire UID to Name Check

Crafting high-performance websites and modern digital solutions to elevate your brand's online presence.

Choose Your Plan

API Packages

Package

Silver

৳ 40.00
  • 500 Name Checking
  • 24/7 Support
  • In 30 Days
Buy Package
Package

Gold

৳ 199.00
  • 10,000 Name Checking
  • 24/7 Support
  • In 90 Days
Buy Package
Most Popular
Package

Diamond

৳ 499.00
  • Unlimited Name Checking
  • 24/7 Support
  • In 365 Days
Buy Package
API Reference

Developer Documentation

Integrate our powerful Free Fire UID checking API with just a few lines of code. Both POST and GET methods are supported.

POST Allowed
GET Allowed
POST Recommended Method

POST Request

Send data in request body with headers

cURL
curl -X POST "https://panel.teambcs.fun/check-id/" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/x-www-form-urlencoded" \
  -d "id=123456789"
PHP
<?php
// Your API Key
$api_key = 'YOUR_API_KEY';
$player_id = '123456789';
$url = 'https://panel.teambcs.fun/check-id/';

$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query(['id' => $player_id]));
curl_setopt($ch, CURLOPT_HTTPHEADER, ['X-API-Key: ' . $api_key]);

$response = curl_exec($ch);
$result = json_decode($response, true);
print_r($result);
?>
JavaScript
fetch('https://panel.teambcs.fun/check-id/', {
  method: 'POST',
  headers: {
    'X-API-Key': 'YOUR_API_KEY',
    'Content-Type': 'application/x-www-form-urlencoded'
  },
  body: 'id=123456789'
})
.then(res => res.json())
.then(data => console.log(data));
Endpoint: POST /check-id/
GET Simple Method

GET Request

Send parameters directly in URL

URL Format
https://panel.teambcs.fun/check-id/?id=123456789&api_key=YOUR_API_KEY
cURL
curl -X GET "https://panel.teambcs.fun/check-id/?id=123456789&api_key=YOUR_API_KEY"
JavaScript
const apiKey = 'YOUR_API_KEY';
const playerId = '123456789';
const url = `https://panel.teambcs.fun/check-id/?id=${playerId}&api_key=${apiKey}`;

fetch(url)
  .then(res => res.json())
  .then(data => {
    if(data.success) {
      console.log('Player:', data.nickname);
    }
  });
Endpoint: GET /check-id/?id={UID}&api_key={KEY}
Authentication

Pass your API key via X-API-Key header or api_key parameter.

Rate Limits

Each API key has request limits based on your package. Check remain in response.

Quick Response

Average response time: 200-500ms. Returns JSON with player nickname and region.

Request Parameters

id string, Required

Free Fire Player ID (numeric only)

api_key string, Required*

Your API key. Can be sent as parameter or via X-API-Key header.

Response Fields

success boolean
message string
nickname string
region string
remain int/string
Success Response (200)
{
  "success": true,
  "message": "Success",
  "nickname": "RIAD 777",
  "region": "bd",
  "remain": 95
}
Error Response (401)
{
  "success": false,
  "message": "Invalid API Key",
  "nickname": null,
  "region": null,
  "remain": null
}

HTTP Status Codes

200 Success
400 Bad Request
401 Unauthorized
403 Forbidden
404 Not Found