# Social Fetch API - SoundCloud endpoints # Base URL: https://api.socialfetch.dev # Auth: x-api-key header (sfk_...) # Full catalog: https://www.socialfetch.dev/llms-endpoints.txt | JSON: https://www.socialfetch.dev/llms.json # Docs hub: https://www.socialfetch.dev/docs/api | OpenAPI: https://www.socialfetch.dev/openapi.json 3 documented SoundCloud operations. Do not invent paths - only the routes below (and their linked markdown pages) are supported. ## GET /v1/soundcloud/profiles/{handle} Get SoundCloud profile Credit cost: 1 credit per successful request. Docs: https://www.socialfetch.dev/docs/api/v1/soundcloud/profiles/handle/get.mdx SDK: client.soundcloud.getProfile({ handle: "kehlanimusic" }) Parameters: - handle (required, string) - SoundCloud handle to look up, with or without a leading @. Outcome field: `data.lookupStatus` in `found`, `not_found` curl "https://api.socialfetch.dev/v1/soundcloud/profiles/kehlanimusic" \ -H "x-api-key: YOUR_API_KEY" ## GET /v1/soundcloud/profiles/{handle}/tracks List SoundCloud profile tracks Credit cost: 1 credit per successful request. Docs: https://www.socialfetch.dev/docs/api/v1/soundcloud/profiles/handle/tracks/get.mdx SDK: client.soundcloud.listProfileTracks({ handle: "kehlanimusic" }) Parameters: - handle (required, string) - SoundCloud handle whose tracks should be listed. - cursor (optional, string) - Opaque pagination cursor from a previous response. Pagination: send query `cursor` from prior `data.page.nextCursor`; stop when `data.page.hasMore` is false. Outcome field: `data.lookupStatus` in `found`, `not_found` curl "https://api.socialfetch.dev/v1/soundcloud/profiles/kehlanimusic/tracks" \ -H "x-api-key: YOUR_API_KEY" ## GET /v1/soundcloud/tracks Get SoundCloud track Credit cost: 1 credit per successful request. Docs: https://www.socialfetch.dev/docs/api/v1/soundcloud/tracks/get.mdx SDK: client.soundcloud.getTrack({ url: "https://soundcloud.com/kehlanimusic/lights-on-feat-big-sean" }) Parameters: - url (required, string) - Link to the SoundCloud track. Outcome field: `data.lookupStatus` in `found`, `not_found` curl "https://api.socialfetch.dev/v1/soundcloud/tracks?url=https://soundcloud.com/kehlanimusic/lights-on-feat-big-sean" \ -H "x-api-key: YOUR_API_KEY"