export function artistAlbumsSearch(id: string): Promise<Response> {
  return fetch(`${apiUrl}/lookup?id=${id}&entity=album`);
}