Skip to content
DocumentationAPI Reference

Set Repeat Mode

Me.Player.SetRepeatMode(PlayerSetRepeatModeParamsparameters, CancellationTokencancellationToken = default)
PUT/me/player/repeat

Set the repeat mode for the user's playback. 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
PlayerSetRepeatModeParams parameters
required string state

track, context or off.
track will repeat the current track.
context will repeat the current context.
off will turn repeat off.

string deviceID

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

Set Repeat Mode

PlayerSetRepeatModeParams parameters = new() { State = "context" };

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