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