Fetch a user's followers.
OAuth access token
The user's numeric ID or URN
Optional
Maximum number of followers per page
Paginated list of follower users
When the API returns an error
import { getFollowers } from 'soundcloud-api-ts';const result = await getFollowers(token, 123456, 50);result.collection.forEach(u => console.log(u.username)); Copy
import { getFollowers } from 'soundcloud-api-ts';const result = await getFollowers(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__followers
Fetch a user's followers.