export function getArtist(endpoint: string, id: string): Promise<Response> {
  return fetch(`${endpoint}/users/${id}?app_name=Nuclear`);
}