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