Fetch users that a given user is following.
OAuth access token
The user's numeric ID or URN
Optional
Maximum number of users per page
Paginated list of followed users
When the API returns an error
import { getFollowings } from 'soundcloud-api-ts';const result = await getFollowings(token, 123456, 50);result.collection.forEach(u => console.log(u.username)); Copy
import { getFollowings } from 'soundcloud-api-ts';const result = await getFollowings(token, 123456, 50);result.collection.forEach(u => console.log(u.username));
https://developers.soundcloud.com/docs/api/explorer/open-api#/users/get_users__user_id__followings
Fetch users that a given user is following.