Dr. Pen M8S/A8S/A9/A11 Cartridges for Microneedling Pen M8S/A8S/A9/A11 Model
Dr. Pen M8S/A8S/A9/A11 Cartridges for Microneedling Pen M8S/A8S/A9/A11 Model
Dr. Pen M8S/A8S/A9/A11 Cartridges for Microneedling Pen M8S/A8S/A9/A11 Model
Dr. Pen M8S/A8S/A9/A11 Cartridges for Microneedling Pen M8S/A8S/A9/A11 Model
Dr. Pen M8S/A8S/A9/A11 Cartridges for Microneedling Pen M8S/A8S/A9/A11 Model
Dr. Pen M8S/A8S/A9/A11 Cartridges for Microneedling Pen M8S/A8S/A9/A11 Model
Dr. Pen M8S/A8S/A9/A11 Cartridges for Microneedling Pen M8S/A8S/A9/A11 Model
Dr. Pen M8S/A8S/A9/A11 Cartridges for Microneedling Pen M8S/A8S/A9/A11 Model
Dr. Pen M8S/A8S/A9/A11 Cartridges for Microneedling Pen M8S/A8S/A9/A11 Model
Dr. Pen M8S/A8S/A9/A11 Cartridges for Microneedling Pen M8S/A8S/A9/A11 Model
Dr. Pen M8S/A8S/A9/A11 Cartridges for Microneedling Pen M8S/A8S/A9/A11 Model
Dr. Pen M8S/A8S/A9/A11 Cartridges for Microneedling Pen M8S/A8S/A9/A11 Model
Dr. Pen M8S/A8S/A9/A11 Cartridges for Microneedling Pen M8S/A8S/A9/A11 Model
Dr. Pen M8S/A8S/A9/A11 Cartridges for Microneedling Pen M8S/A8S/A9/A11 Model
Dr. Pen M8S/A8S/A9/A11 Cartridges for Microneedling Pen M8S/A8S/A9/A11 Model
Dr. Pen M8S/A8S/A9/A11 Cartridges for Microneedling Pen M8S/A8S/A9/A11 Model
Dr. Pen M8S/A8S/A9/A11 Cartridges for Microneedling Pen M8S/A8S/A9/A11 Model
Dr. Pen M8S/A8S/A9/A11 Cartridges for Microneedling Pen M8S/A8S/A9/A11 Model
Dr. Pen M8S/A8S/A9/A11 Cartridges for Microneedling Pen M8S/A8S/A9/A11 Model
Dr. Pen M8S/A8S/A9/A11 Cartridges for Microneedling Pen M8S/A8S/A9/A11 Model
Dr. Pen M8S/A8S/A9/A11 Cartridges for Microneedling Pen M8S/A8S/A9/A11 Model
Dr. Pen M8S/A8S/A9/A11 Cartridges for Microneedling Pen M8S/A8S/A9/A11 Model
Dr. Pen M8S/A8S/A9/A11 Cartridges for Microneedling Pen M8S/A8S/A9/A11 Model
Dr. Pen M8S/A8S/A9/A11 Cartridges for Microneedling Pen M8S/A8S/A9/A11 Model

Dr. Pen M8S/A8S/A9/A11 Cartridges for Microneedling Pen M8S/A8S/A9/A11 Model

$22.99
$44.99
-$22.00
(Tax included)
Size-12 pin
Please select a size
Pack-10 Pcs
Please select a pack
Quantity
Free Shipping
Authenticity Guarantee
Enjoy Extra 15% discount with code: CD15
3-Year Limited Warranty
/** @private {string} */ class SpzCustomAnchorScroll extends SPZ.BaseElement { static deferredMount() { return false; } constructor(element) { super(element); /** @private {Element} */ this.scrollableContainer_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } buildCallback() { this.viewport_ = this.getViewport(); this.initActions_(); } setTarget(containerId, targetId) { this.containerId = '#' + containerId; this.targetId = '#' + targetId; } scrollToTarget() { const container = document.querySelector(this.containerId); const target = container.querySelector(this.targetId); const {scrollTop} = container; const eleOffsetTop = this.getOffsetTop_(target, container); this.viewport_ .interpolateScrollIntoView_( container, scrollTop, scrollTop + eleOffsetTop ); } initActions_() { this.registerAction( 'scrollToTarget', (invocation) => this.scrollToTarget(invocation?.caller) ); this.registerAction( 'setTarget', (invocation) => this.setTarget(invocation?.args?.containerId, invocation?.args?.targetId) ); } /** * @param {Element} element * @param {Element} container * @return {number} * @private */ getOffsetTop_(element, container) { if (!element./*OK*/ getClientRects().length) { return 0; } const rect = element./*OK*/ getBoundingClientRect(); if (rect.width || rect.height) { return rect.top - container./*OK*/ getBoundingClientRect().top; } return rect.top; } } SPZ.defineElement('spz-custom-anchor-scroll', SpzCustomAnchorScroll); const STRENGTHEN_TRUST_URL = "/api/strengthen_trust/settings"; class SpzCustomStrengthenTrust extends SPZ.BaseElement { constructor(element) { super(element); this.renderElement_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } buildCallback() { this.xhr_ = SPZServices.xhrFor(this.win); const renderId = this.element.getAttribute('render-id'); SPZCore.Dom.waitForChild( document.body, () => !!document.getElementById(renderId), () => { this.renderElement_ = SPZCore.Dom.scopedQuerySelector( document.body, `#${renderId}` ); if (this.renderElement_) { this.render_(); } this.registerAction('track', (invocation) => { this.track_(invocation.args); }); } ); } render_() { this.fetchData_().then((data) => { if (!data) { return; } SPZ.whenApiDefined(this.renderElement_).then((apis) => { apis?.render(data); document.querySelector('#strengthen-trust-render-1539149753700').addEventListener('click',(event)=>{ if(event.target.nodeName == 'A'){ this.track_({type: 'trust_content_click'}); } }) }); }); } track_(data = {}) { const track = window.sa && window.sa.track; if (!track) { return; } track('trust_enhancement_event', data); } parseJSON_(string) { let result = {}; try { result = JSON.parse(string); } catch (e) {} return result; } fetchData_() { return this.xhr_ .fetchJson(STRENGTHEN_TRUST_URL) .then((responseData) => { if (!responseData || !responseData.data) { return null; } const data = responseData.data; const moduleSettings = (data.module_settings || []).reduce((result, moduleSetting) => { return result.concat(Object.assign(moduleSetting, { logos: (moduleSetting.logos || []).map((item) => { return moduleSetting.logos_type == 'custom' ? this.parseJSON_(item) : item; }) })); }, []); return Object.assign(data, { module_settings: moduleSettings, isEditor: window.self !== window.top, }); }); } } SPZ.defineElement('spz-custom-strengthen-trust', SpzCustomStrengthenTrust);

Original cartridges for Dr.pen M8S/A8S/A9/A11 microneedling pen

  • 【100% Authentic】These Dr.pen microneedling cartridges are all manufactured by authorized manufacturers of Dr.pen, designed specifically for use with the Dr.pen M8S/A8S/A9, ensuring genuine quality and compatibility.
  • 【Individually Packaged】 Each microneedling cartridges is individually packaged as a disposable sterile product, ensuring no cross-contamination and giving you peace of mind.
  • 【Model】suitable for Dr.pen M8S/Dr.pen A8S/Dr.pen A9/Dr.pen A11.
  • 【Solve Various Skin Problems】suitable for improves acne, pores, scars, stretch marks, and cellulite tissue marks.
  • 【Warm Reminder】①Dr.pen M8S replacement cartridges are for personal one-time use only, do not share with others or reuse. ②Do not use on open wounds or irritated skin. 

Upgraded features to suit the new Dr. Pen M8S Microneedling Pen

  • Newly adopted wavy contact edge to help with better skincare product absorption
  • Newly built three snap connectors to help with the performance and protection of the device machine
  • Easily paired with Dr. Pen M8S Microneedling Pen
  • High-quality stainless steel for the gauge
  • Maximum depth of 2.5mm

The main difference between Dr.pen cartridge models is the number and shape of the needles. Different needle types are suitable for different skin issues and treatment areas.

7 Available Types

12 Pins: Needles made of 304 stainless steel, suitable for improving acne scars, fading pitted scars, repairing depressed scars and fading stretch marks.

18 Pins: Needles made of 304 stainless steel, suitable for improves acne, pores, scars, stretch marks, and cellulite tissue marks.

24 Pins: Needles made of 304 stainless steel, suitable for anti-wrinkle, moisturizing, firming, whitening, and fading spots. With more needles, it is suitable for large area treatments.

36 Pins: Needles made of 304 stainless steel, suitable for anti-wrinkle, moisturizing, firming, whitening, and fading spots. With more needles, it is suitable for large area treatments.

42 Pins: Needles made of 304 stainless steel, suitable for deep acne scars, pitted scars, spots, stretch marks, wrinkles, moisturizing, lifting, firming. With the most needles, it is suitable for deep, large area treatments.

Nano-R: Skin contact area of 50mm², made of 304 stainless steel, suitable for fine lines, fading acne scars, pitted scars, closed acne, fading spots, shrinking pores, daily care (suitable for sensitive thin skin).

Nano-S: Skin contact area of 9mm², 7*7 contact points, single crystal silicon material, suitable for superficial essence delivery, eye care, highland redness, thin horny layer, and sensitive skin. Suitable for small areas and sensitive areas.

Important: Microneedling cartridges must be sterilised before each use to ensure the treatment is safe and hygienic. It is essential to follow these steps carefully to ensure that the microneedling cartridges are appropriately sterilised. Here are the steps to sterilise microneedling cartridges:

  1. First, ensure that you have all the necessary equipment for sterilisation: gloves, isopropyl alcohol solution (70% or above) and a clean container to hold the solution.
  2. Put on your gloves to avoid contaminating the cartridges during the sterilisation process.
  3. Check on your cartridge; ensure the needles are in perfect condition (i.e. not bending) and remove any debris.
  4. Pour enough alcohol solution into the container and dip the cartridge needle into a sterilisation container, then soak for a couple of minutes.
  5. If you have alcohol solution in a spray model, you can spray it towards the needle head of the cartridge.
  6. Once the sterilisation is complete, allow the cartridge to air dry before using it.
  7. Finally, your cartridge is ready for use.

Usage

Schedule your microneedling treatment once every 4-6 weeks

DO NOT USE 

  • One cartridge more than once for safety and hygiene reasons
  • On open wounds
  • On broken skin
  • On active acne 
  • Or continue to use if irritation occurs

FAQs

The Dr. Pen Microneedling Pen is a device designed for at-home microneedling, helping to improve skin texture, reduce fine lines, wrinkles, and scars.

The Dr. Pen Auto Microneedle System effectively boosts collagen and elastin production, leading to fuller skin while reducing fine lines and scars over time. This microneedling treatment targets a variety of concerns, including wrinkles, uneven texture, stretch marks, loss of tone and elasticity, enlarged pores, acne scars, and pigmentation issues.

It is recommended to use the pen every 4-6 weeks, depending on your skin type and the condition being treated.

Needle sizes vary depending on the treatment area. For fine lines, a 0.25-0.5mm needle is suitable, while deeper scars may require 1.5mm or more.

Scratch to reveal the complete QR code and authentication number. Then, scan the QR code and authenticate the number