<p>Get the current user’s top tracks based on calculated affinity.</p>
</blockquote>
<p><strong>Parameters</strong></p>
<table>
<thead>
<tr>
<th>Name</th>
<th>Description</th>
<th>Example</th>
</tr>
</thead>
<tbody>
<tr>
<td>[timeRange]</td>
<td>Over what time frame the affinities are compute.</td>
<td><code>TimeRangeType.MediumTerm</code></td>
</tr>
<tr>
<td>[limit]</td>
<td>The maximum number of items to return. Default: 20. Minimum: 1. Maximum: 50.</td>
<td><code>20</code></td>
</tr>
<tr>
<td>[offset]</td>
<td>The index of the first entity to return. Default: 0 (i.e., the first track). Use with limit to get the next set of entities.</td>
<td><code>0</code></td>
</tr>
</tbody>
</table>
<p>Returns a <ahref="https://developer.spotify.com/web-api/object-model/#track-object-full">FullTrack</a> wrapped inside a <ahref="https://developer.spotify.com/web-api/object-model/#paging-object">Paging-object</a></p>
<p>Get the current user’s top artists based on calculated affinity.</p>
</blockquote>
<p><strong>Parameters</strong></p>
<table>
<thead>
<tr>
<th>Name</th>
<th>Description</th>
<th>Example</th>
</tr>
</thead>
<tbody>
<tr>
<td>[timeRange]</td>
<td>Over what time frame the affinities are compute.</td>
<td><code>TimeRangeType.MediumTerm</code></td>
</tr>
<tr>
<td>[limit]</td>
<td>The maximum number of items to return. Default: 20. Minimum: 1. Maximum: 50.</td>
<td><code>20</code></td>
</tr>
<tr>
<td>[offset]</td>
<td>The index of the first entity to return. Default: 0 (i.e., the first track). Use with limit to get the next set of entities.</td>
<td><code>0</code></td>
</tr>
</tbody>
</table>
<p>Returns a <ahref="https://developer.spotify.com/web-api/object-model/#artist-object-full">FullArtist</a> wrapped inside a <ahref="https://developer.spotify.com/web-api/object-model/#paging-object">Paging-object</a></p>
<p>Get tracks from the current user’s recent play history.</p>
</blockquote>
<p><strong>Parameters</strong></p>
<table>
<thead>
<tr>
<th>Name</th>
<th>Description</th>
<th>Example</th>
</tr>
</thead>
<tbody>
<tr>
<td>[limit]</td>
<td>The maximum number of items to return. Default: 20. Minimum: 1. Maximum: 50.</td>
<td><code>20</code></td>
</tr>
<tr>
<td>[after]</td>
<td>Returns all items after (but not including) this cursor position.</td>
<td><code>DateTime.Now.AddDays(-1)</code></td>
</tr>
<tr>
<td>[before]</td>
<td>Returns all items before (but not including) this cursor position.</td>
<td><code>DateTime.Now.AddDays(-1)</code></td>
</tr>
</tbody>
</table>
<p>Returns a <code>PlayHistory</code> wrapped inside a <ahref="https://developer.spotify.com/web-api/object-model/#cursor-based-paging-object">CursorPaging-object</a></p>