Get the list of users this user follows.
GET
/users/{user-id}/follows
relationships
instead of the
user-id
.Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.instagram.com/v1/users//follows'
Response Response Example
{
"data": [
{
"full_name": "string",
"id": "string",
"profile_picture": "string",
"username": "string"
}
],
"meta": {
"code": 0
},
"pagination": {
"next_cursor": "string",
"next_url": "string"
}
}
Request
Path Params
user-id
string
required
Responses
Modified at 2023-08-15 03:55:31