const bytes = new Uint8Array(api_result); const blob = new Blob([bytes], { type: 'application/pdf', }); const link = document.createElement('a'); link.href = URL.createObjectURL(blob); link.download = "myFileName.pdf"; link.click();