Skip to content
DocumentationAPI Reference

Skip To Next

Me.Player.SkipNext(PlayerSkipNextParams?parameters, CancellationTokencancellationToken = default)
POST/me/player/next

Skips to next track in the user’s queue. This API only works for users who have Spotify Premium. The order of execution is not guaranteed when you use this API with other Player API endpoints.

ParametersExpand Collapse
PlayerSkipNextParams parameters
string deviceID

The id of the device this command is targeting. If not supplied, the user's currently active device is the target.

Skip To Next

PlayerSkipNextParams parameters = new();

await client.Me.Player.SkipNext(parameters);
Returns Examples