Fetch followers of an account

Use this endpoint (https://komico.edubrazeal.com/mobile_api/fetch_followers) to fetch a user's followers list


Get parameters

Field Value Remarks
offset Last user offset ID This is only needed when loading users of the pagination system.
session_id ​Access token ID (Optional) E.g. e7a4652c3231fc74761...
user_id ​User ID E.g. 391
page_size ​Total users limit for each request Recommended: 20

Success response

{
        "code": 200,
        "message": "Followers loaded successfully",
        "data": [
            {
                "offset_id": 6294,
                "id": 945,
                "about": "Fitness enthusiast",
                "followers": 428,
                "posts": 89,
                "avatar": "http://example.com/upload/avatars/945/profile_thumbnail_512x512.jpg",
                "last_active": "05 Nov, 24 09:12 PM",
                "username": "@marcus_brown",
                "fname": "Marcus",
                "lname": "Brown",
                "email": "marcus.brown@example.com",
                "verified": "1",
                "follow_privacy": "approved",
                "name": "Marcus Brown",
                "url": "http://example.com/@marcus_brown",
                "is_following": false,
                "follow_requested": false,
                "is_user": false
            },
            ...
        ]
    }
    

Error responses

{
        "message": "No data found",
        "code": 204,
        "data": []
    }

    {
        "code": 404,
        "message": "User with this ID does not exist",
        "data": []
    }

    {
        "code": 400,
        "message": "This profile data is not available for viewing",
        "data": []
    }