Get Player Wishlist
Retrieves the wishlist items for a specific player account.
Headers
-
Your API key from the developer portal (Header method - Recommended).
Alternative: You can also pass the API key as a query parameter
?key=your_api_key
Query parameters
-
The region code for the player's account:
sg: Singapore region (covers SG, ID, ME, VN, TH, CIS, EU, TW, MY, PK, BD)ind: India region (covers IND only)br: Brazil region (covers BR, US, NA, LATAM)
Values are
sg,ind, orbr. -
The unique player User ID (10-12 digits)
Format should match the following pattern:
^\d{10,12}$.
GET
/wishlist
curl \
--request GET 'https://developers.freefirecommunity.com/api/v1/wishlist?region=ind&uid=665951869' \
--header "x-api-key: ffc_1234567890_abcdefghijk"
Response examples (200)
# Headers
X-RateLimit-Limit: 60
X-RateLimit-Remaining: 45
# Payload
{
"wishlist_items": [
{}
]
}
Response examples (400)
{
"error": "string",
"message": "string",
"status": 42
}
Response examples (401)
{
"error": "string",
"message": "string",
"status": 42
}
Response examples (429)
{
"error": "string",
"message": "string",
"status": 42
}