Fetch IF AN USER FOLLOWS YOU

Please use this (https://blkem.com/mobile_api/follows_you) API for accessing endpoint of user following status (i.e.; whether that particular user is following you).


Get parameters

Field Value Remarks
session_id Access token ID (Optional) E.g. de25cc16eb00960f076...
user_id User int ID E.g. 12

Success response

{
        "code": 200,
        "message": "Following fetched successfully",
        "data": [
            {
                "follows_you": 1,
                "me": 8715,
                "user": 1
            }
        ]
    }
    

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": []
    }