Fetch Following Users

Use this endpoint (https://komico.edubrazeal.com/mobile_api/fetch_following) to fetch a user's following 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": "Following loaded successfully",
        "data": [
            {
                "offset_id": 5847,
                "id": 782,
                "about": "Designer and artist",
                "followers": 284,
                "posts": 156,
                "avatar": "http://example.com/upload/avatars/782/profile_thumbnail_512x512.png",
                "last_active": "05 Nov, 24 08:45 PM",
                "username": "@olivia_chen",
                "fname": "Olivia",
                "lname": "Chen",
                "email": "olivia.chen@example.com",
                "verified": "1",
                "follow_privacy": "everyone",
                "name": "Olivia Chen",
                "url": "http:\/\/example.com\/@olivia_chen",
                "is_following": true,
                "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": []
    }