Friends
List Friends
Returns all confirmed friends of the authenticated user.
POST
/api/vaneltonid/friend_list.php
Requires
Authorization: AppID:AppKey + user tokenRequest body
| Field | Type | Required | Description |
|---|---|---|---|
| token | string | required | User's session token |
Test this endpoint
Headers
Body
Success response 200
{
"success": true,
"data": {
"friends": [
{
"id": 10,
"userKey": "xyz...",
"username": "friend123",
"name": "Friend Name",
"profileimg": "https://..."
}
],
"count": 1
}
}