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