API Documentation

Complete guide to using the Zaynix Free Fire Account Info API

Endpoint

GET /api/accinfo

Fetches detailed Free Fire player account information based on player UID and region.

Query Parameters

uidrequired

The player's unique ID (UID) in Free Fire. Must be a valid numeric UID.

Example: 11111111

regionoptional

Player's region. Defaults to IND if not specified.

Supported: IND, BR, US, SAC, BD, ID, PK, VN, ME, TH

Example Request

curl "https://zaynix.vercel.app/api/accinfo?uid=11111111&region=IND"

Response

The API returns detailed player account information in JSON format.

{
  "playerName": "PlayerName",
  "level": 60,
  "unionLevel": 10,
  "Owners": ["KALLU CODEX!!"],
  "accountPersonalShowInfo": {
    // detailed player stats and information
  }
}

Error Handling

400 Bad Request

Returned when required parameters are missing or invalid

500 Internal Server Error

Returned when there's an issue processing the request

Rate Limiting

API requests are rate limited. Please ensure you implement appropriate delays between requests to avoid being rate-limited by the Free Fire API.