API Documentation
Complete guide to using the Zaynix Free Fire Account Info API
Endpoint
GET /api/accinfoFetches detailed Free Fire player account information based on player UID and region.
Query Parameters
uidrequiredThe player's unique ID (UID) in Free Fire. Must be a valid numeric UID.
Example: 11111111
regionoptionalPlayer'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®ion=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 RequestReturned when required parameters are missing or invalid
500 Internal Server ErrorReturned 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.