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