diff --git a/src/Discord.Net.Core/Entities/Activities/SpotifyGame.cs b/src/Discord.Net.Core/Entities/Activities/SpotifyGame.cs
index 23f88687d..4eab34fa2 100644
--- a/src/Discord.Net.Core/Entities/Activities/SpotifyGame.cs
+++ b/src/Discord.Net.Core/Entities/Activities/SpotifyGame.cs
@@ -31,6 +31,23 @@ namespace Discord
/// A string containing the name of the song (e.g. Lonely Together (feat. Rita Ora)).
///
public string TrackTitle { get; internal set; }
+
+ ///
+ /// Gets the date when the track started playing.
+ ///
+ ///
+ /// A containing the start timestamp of the song.
+ ///
+ public DateTimeOffset? StartedAt { get; internal set; }
+
+ ///
+ /// Gets the date when the track ends.
+ ///
+ ///
+ /// A containing the finish timestamp of the song.
+ ///
+ public DateTimeOffset? EndsAt { get; internal set; }
+
///
/// Gets the duration of the song.
///
@@ -39,6 +56,22 @@ namespace Discord
///
public TimeSpan? Duration { get; internal set; }
+ ///
+ /// Gets the elapsed duration of the song.
+ ///
+ ///
+ /// A containing the elapsed duration of the song.
+ ///
+ public TimeSpan? Elapsed => DateTimeOffset.UtcNow - StartedAt;
+
+ ///
+ /// Gets the remaining duration of the song.
+ ///
+ ///
+ /// A containing the remaining duration of the song.
+ ///
+ public TimeSpan? Remaining => EndsAt - DateTimeOffset.UtcNow;
+
///
/// Gets the track ID of the song.
///
diff --git a/src/Discord.Net.WebSocket/Extensions/EntityExtensions.cs b/src/Discord.Net.WebSocket/Extensions/EntityExtensions.cs
index bad72aaea..5149eea5b 100644
--- a/src/Discord.Net.WebSocket/Extensions/EntityExtensions.cs
+++ b/src/Discord.Net.WebSocket/Extensions/EntityExtensions.cs
@@ -38,6 +38,8 @@ namespace Discord.WebSocket
AlbumTitle = albumText,
TrackTitle = model.Details.GetValueOrDefault(),
Artists = model.State.GetValueOrDefault()?.Split(';').Select(x=>x?.Trim()).ToImmutableArray(),
+ StartedAt = timestamps?.Start,
+ EndsAt = timestamps?.End,
Duration = timestamps?.End - timestamps?.Start,
AlbumArtUrl = albumArtId != null ? CDN.GetSpotifyAlbumArtUrl(albumArtId) : null,
Type = ActivityType.Listening,