Skip to content
DocumentationAPI Reference

Seek To Position

Me.Player.SeekToPosition(PlayerSeekToPositionParamsparameters, CancellationTokencancellationToken = default)
PUT/me/player/seek

Seeks to the given position in the user’s currently playing track. 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
PlayerSeekToPositionParams parameters
required Long positionMs

The position in milliseconds to seek to. Must be a positive number. Passing in a position that is greater than the length of the track will cause the player to start playing the next song.

string deviceID

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

Seek To Position

PlayerSeekToPositionParams parameters = new() { PositionMs = 25000 };

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