The “get followers” API endpoint allows a user to retrieve a list of users who are following them on the Voomerr platform. The endpoint requires the user ID of the user whose followers are being retrieved. The response will contain a list of user objects representing the followers, including their ID, name, profile picture, and follower status.
Endpoint #
The Voomerr Get Followers endpoint is POST https://admin.voomerr.com/api/get_followers.php
Request parameters #
Parameter | Required | Description |
---|---|---|
user_id | Yes | The ID of the user whose followers are to be retrieved. |
Response parameters #
Parameter | Description |
---|---|
status | The status of the API call. Either “success” or “error”. |
message | A message explaining the result of the API call. |
data | An array of follower objects, where each object contains the following parameters:<ul><li>id: The ID of the follower user.</li><li>username: The username of the follower user.</li><li>image: The profile image URL of the follower user.</li></ul> |
Request Example #
json
{
"user_id": "1234"
}
Response Example #
json
{
"status": "success",
"message": "Followers retrieved successfully",
"data": [
{
"id": "5678",
"username": "johndoe",
"image": "https://example.com/profile_images/johndoe.jpg"
},
{
"id": "9012",
"username": "janedoe",
"image": "https://example.com/profile_images/janedoe.jpg"
}
]
}