Fetch the authenticated user's profile.
OAuth access token
The authenticated user's full profile including private account details
When the token is invalid or the API returns an error
import { getMe } from 'soundcloud-api-ts';const me = await getMe(token);console.log(me.username, me.private_tracks_count); Copy
import { getMe } from 'soundcloud-api-ts';const me = await getMe(token);console.log(me.username, me.private_tracks_count);
https://developers.soundcloud.com/docs/api/explorer/open-api#/me/get_me
Fetch the authenticated user's profile.