Get a SoundCloud track by URL.
Endpoint
/v1/soundcloud/tracks
Query
Link to the SoundCloud track.
const response = await fetch( "https://api.socialfetch.dev/v1/soundcloud/tracks?url=https://soundcloud.com/kehlanimusic/lights-on-feat-big-sean", { headers: { "x-api-key": "YOUR_API_KEY" } } ); const data = await response.json(); console.log(data);