Gets the details of the current artist
Future<Artist> getArtistInfo() async { final response = await _get('/api/me'); return Artist.fromJson(response.data); }