List the authenticated user's connected external social accounts.
OAuth access token (user token required)
Array of connection objects for linked social services
When the API returns an error
This endpoint may require elevated API access or app approval.
import { getMeConnections } from 'soundcloud-api-ts';const connections = await getMeConnections(token);connections.forEach(c => console.log(c.service, c.display_name)); Copy
import { getMeConnections } from 'soundcloud-api-ts';const connections = await getMeConnections(token);connections.forEach(c => console.log(c.service, c.display_name));
https://developers.soundcloud.com/docs/api/explorer/open-api#/me/get_me_connections
List the authenticated user's connected external social accounts.