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