API Overview

FFData provides high-performance, enterprise-grade access to unofficial Free Fire game statistics, regional leaderboards, and Craftland workshop creators. By handling low-latency protocol parsing and data decryption, our platform offers a unified REST API for developers. Build custom analytics dashboards, automated tournament platforms, and profile tracking bots with speed, resilience, and security.

Quickstart

Get started in seconds with our official Python client. Installing the package takes care of connection pooling, retries, and failure caching.

pip install ffdata-clientTerminal
python
from ffclient import FFClient

# Initialize client (Default points to https://ffdata-api.onrender.com)
client = FFClient(api_key="your_api_key")

# Fetch player data with specific detail level
player = client.get_player(uid=1738283841, detail_level="detailed")

print(player["data"]["nickname"])
print(player["meta"]["time_ms"])])

Authentication

All endpoints require a valid API key issued from your developer dashboard. Include the key inside theAuthorizationheader as a Bearer token. Keep your keys secret.

python
# Set headers for raw REST API calls
headers = {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json'
}
}