getArtistTopTracks(artist: string): Promise<Response> {
    return fetch(this.addApiKey(
      scrobblingApiUrl +
      '?method=artist.gettoptracks&artist=' +
      encodeURIComponent(artist) +