Export verification results

const response = await fetch('https://api.emailit.com/v2/email-verification-lists/evl_abc123xyz/export', {
  method: 'GET',
  headers: {
    'Authorization': 'Bearer em_test_51RxCWJ...vS00p61e0qRE'
  }
});

// Response is an XLSX file
const blob = await response.blob();
// Save or process the file

Responses

Returns an XLSX file download with Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet