Order from HiZir

Equipment, print services, and materials — placed directly with our team. Choose a channel below and submit your inquiry.

How would you like to order?

Select the order type that fits your needs. All inquiries are reviewed by our team within 24 hours.

Quote Required

Equipment Purchase

Purchase the Space Ti-160, Mini-100, Space Ti-200 Annealing Furnace, or Plasma Polish Machine. Our team prepares a formal quote with configuration, pricing, and shipping timeline.

Request a Quote
File Submission

Print Service Order

Send your STL or 3DM files and receive finished metal dental parts — crowns, partial frameworks, implant bars, and more. Printed, annealed, and plasma-polished by our team. Nationwide shipping.

Place a Print Order
In Stock

Materials & Supplies

Order HiZir zirconia blocks (multilayer, high-strength, ultra-translucent), titanium alloy powder (Ti-6Al-4V), cobalt-chrome powder (CoCrMo), and lab consumables.

Order Materials
Coming Soon

Online Store

Our full e-commerce store — with instant checkout, order history, and secure payments — is being built on Shopify. Check back soon for direct online purchasing.

Shopify Store — Coming Soon

Order Inquiry Form

Fill in your details and our team will confirm pricing, availability, and shipping timeline within 24 hours.

Click to select files, or drag & drop

⚠ Your email client will open after submit — attach these files manually before sending.

Your information is used only to process your order inquiry and will not be shared with third parties.

or email us directly at info@HiZirLab.com

Need help deciding?

Our specialists are happy to walk you through equipment options, print service logistics, or material selection for your lab.

document.getElementById('orderForm').addEventListener('submit', async function (e) { e.preventDefault(); const f = e.target; const name = f.fullName.value.trim(); const email = f.email.value.trim(); const phone = f.phone.value.trim(); const address = f.address.value.trim(); const type = f.orderType.value; const req = f.requirements.value.trim(); if (!name || !email || !phone || !address || !type || !req) { alert('Please fill in all required fields before submitting.'); return; } const fileInput = document.getElementById('attachments'); const fileNames = fileInput.files.length ? Array.from(fileInput.files).map(f => f.name).join(', ') : ''; const payload = { orderType: type, fullName: name, email, phone, address, requirements: req, attachments: fileNames }; const submitBtn = f.querySelector('[type="submit"]'); const successEl = document.getElementById('formSuccess'); const originalText = submitBtn.innerHTML; submitBtn.disabled = true; submitBtn.innerHTML = 'Sending…'; const endpoint = window.HIZIR_FORM_ENDPOINT || ''; if (endpoint) { try { const res = await fetch(endpoint, { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(payload), }); if (!res.ok) throw new Error('Server error'); successEl.style.display = 'block'; f.reset(); } catch { // Endpoint failed — fall back to mailto so the inquiry isn't lost _mailtoFallback(type, name, email, phone, address, req, fileNames); } } else { _mailtoFallback(type, name, email, phone, address, req, fileNames); successEl.style.display = 'block'; f.reset(); } submitBtn.disabled = false; submitBtn.innerHTML = originalText; }); // File upload UI (function () { const input = document.getElementById('attachments'); const label = document.getElementById('fileLabel'); const area = document.getElementById('fileUploadArea'); if (!input) return; input.addEventListener('change', function () { if (this.files.length) { const names = Array.from(this.files).map(f => f.name).join(', '); label.innerHTML = `${names}`; } else { label.textContent = 'Click to select files, or drag & drop'; } }); area.addEventListener('dragover', e => { e.preventDefault(); area.classList.add('drag-over'); }); area.addEventListener('dragleave', () => area.classList.remove('drag-over')); area.addEventListener('drop', e => { e.preventDefault(); area.classList.remove('drag-over'); input.files = e.dataTransfer.files; input.dispatchEvent(new Event('change')); }); })(); function _mailtoFallback(type, name, email, phone, address, req, fileNames) { const subject = `HiZir Order Inquiry — ${type}`; const attachNote = fileNames ? `\n\n--- FILES TO ATTACH ---\n${fileNames}\n(Please attach these files to this email before sending)` : ''; const body = `Order Type: ${type}\n` + `Name: ${name}\n` + `Email: ${email}\n` + `Phone: ${phone}\n` + `\nShipping Address:\n${address}\n` + `\nOrder Details & Requirements:\n${req}` + attachNote; window.location.href = `mailto:info@HiZirLab.com?subject=${encodeURIComponent(subject)}&body=${encodeURIComponent(body)}`; }