Contact us — Occamarket

Visit our new
shop in Paris

Find out more

Frequently asked questions

Will I receive the same product as shown in the photo? +
Yes. Each listing is accompanied by actual photos of the equipment being sold. We are committed to ensuring that the description and images accurately reflect the actual condition of the product. If in doubt, please contact us before purchasing.
Where can I view my order receipt? +
Your receipt will be sent to you automatically by email after your order has been confirmed. You can also find it in your customer account, under "My orders".
How do I return an article? +
You have 30 days after receipt to return an article. Go to your customer account, select the order in question and follow the return procedure. Returns are free for all purchases on Occamarket.
Will out-of-stock items be restocked? +
As second-hand equipment is unique, an out-of-stock article is not usually restocked with an identical article. However, similar products are added regularly. Activate the stock alert to be notified.
Do you deliver anywhere in France? +
Yes, we deliver throughout mainland France. Delivery is free for purchases over £150. For French overseas departments and territories or international deliveries, please contact us for a personalised quote.

Contact us if you have any questions

✓ Your message has been sent. We will respond within 24 hours.
// Scroll animations const obs = new IntersectionObserver(entries => { entries.forEach(e => { if (e.isIntersecting) e.target.classList.add('visible'); }); }, { threshold: 0.06 }); document.querySelectorAll('.fade-in').forEach(el => obs.observe(el)); // FAQs accordion document.querySelectorAll('.faq-article').forEach(article => { article.querySelector('.faq-question').addEventListener('click', () => { const isOpen = article.classList.contains('open'); document.querySelectorAll('.faq-article').forEach(i => i.classList.remove('open')); if (!isOpen) article.classList.add('open'); }); }); // Form submit simulation document.getElementById('contactForm').addEventListener('submit', e => { e.preventDefault(); const s = document.getElementById('formSuccess'); s.style.display = 'block'; e.target.reset(); setTimeout(() => s.style.display = 'none', 5000); });