Skip to main content
GET
/
users
/
friends
Get User Friends
curl --request GET \
  --url https://api-dev.monyfix.tech/users/friends \
  --header 'Authorization: Bearer <token>'
[
{
"id": "<string>",
"phone": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"username": "<string>",
"avatar_url": "<string>"
}
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Successful Response

id
string
required
phone
string
required
first_name
string | null
required
last_name
string | null
required
username
string | null
required
avatar_url
string | null
required