Soundcloud
Connector for the soundcloud API, generated deterministically from its OpenAPI spec (endpoints, auth, and methods match the spec exactly — nothing is invented).
- Base URL:
https://api.soundcloud.com - Auth:
header:Authorization(pass your key via theapiKeyinput)
Operations
get_connect— GET /connect — The OAuth2 authorization endpoint. Your app redirects a user to this endpoint, allowing them to delegate access to their account.get_me— GET /me — Returns the authenticated user’s information.get_me_activities— GET /me/activities — Returns the authenticated user's activities.get_me_activities_all_own— GET /me/activities/all/own — Recent the authenticated user's activities.get_me_activities_tracks— GET /me/activities/tracks — Returns the authenticated user's recent track related activities.get_me_connections— GET /me/connections — Returns a list of the authenticated user's connected social accounts.
Inputs
apiKey— your soundcloud API keyoperation— one of the operations above- path parameters when an operation's path contains
{...} query— optional JSON object of query paramsbody— JSON object for create/update ops
Example
operation: get_connect
apiKey: <your key>