Console
Friends

List Friends

Returns all confirmed friends of the authenticated user.

POST /api/vaneltonid/friend_list.php
Requires Authorization: AppID:AppKey + user token

Request body

FieldTypeRequiredDescription
tokenstringrequiredUser's session token

Success response 200

{
  "success": true,
  "data": {
    "friends": [
      {
        "id": 10,
        "userKey": "xyz...",
        "username": "friend123",
        "name": "Friend Name",
        "profileimg": "https://..."
      }
    ],
    "count": 1
  }
}
The userKey value can be used directly as the userkey input field of user_profile.php.