Fetch users the authenticated user is following.
OAuth access token
Optional
Maximum number of users per page
Paginated list of followed users
When the API returns an error
import { getMeFollowings } from 'soundcloud-api-ts';const result = await getMeFollowings(token, 50);result.collection.forEach(u => console.log(u.username)); Copy
import { getMeFollowings } from 'soundcloud-api-ts';const result = await getMeFollowings(token, 50);result.collection.forEach(u => console.log(u.username));
https://developers.soundcloud.com/docs/api/explorer/open-api#/me/get_me_followings
Fetch users the authenticated user is following.