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