Fetch a user's public profile by ID.
OAuth access token
The user's numeric ID or URN
The user's public profile
When the user is not found or the API returns an error
import { getUser } from 'soundcloud-api-ts';const user = await getUser(token, 123456);console.log(user.username); Copy
import { getUser } from 'soundcloud-api-ts';const user = await getUser(token, 123456);console.log(user.username);
https://developers.soundcloud.com/docs/api/explorer/open-api#/users/get_users__user_id_
Fetch a user's public profile by ID.