Leather Pricking Irons & Stitch Punches

Find premium grade Diamond Stitching Chisels and Pricking Irons from Japan, tempered for maximum strength, create sewing holes with tools that won't bend or deform.

Sort and refine displayed items

Price
USD
USD
Brands
Number of prongs
Prong size
Availabilty
Item rating

Goods Japan stock a multitude of Japanese made pricking iron and stitch punches from renowned leathercraft companies Craft Sha, Kyoshin Elle, and Oka. These leather pricking irons and stitch punches of various sizes and prong numbers are used to punch precise and accurate stitch holes in preparation for leather sewing. Pricking irons made by these Japanese manufacturers have highly tempered prongs, which serve a dual purpose:

First, they protect your leatherwork from uneven stitching by breaking, rather than bending, when damaged, ensuring your leatherwork is not ruined by uneven stitching brought about by an undetected bent prong. Second, they provide you extreme hard prong tips, that are longer-lasting, require less sharpening, and have a greater penetrating ability.

This dual function is extremely useful since it not only gives you exceptional stitch holes, but offers you peace of mind, knowing that you will not have a single irregular hole to ruin the leather masterpiece you've spent so much time creating.

We also have high-quality, Japanese-made pricking iron nippers that guarantee your stitching holes are aligned precisely on both the front and back of your leather. These nippers are a great compliment to your stitch punch and will make sewing holes in your leathercraft a snap. Available in various sizes.

Crafted from durable materials, our pricking irons are built to withstand regular use and maintain their sharpness over time. Available in various tooth configurations and sizes, these tools cater to a range of project needs, from fine detailing to broader stitching lines. Shop our collection of pricking irons today and enjoy worldwide shipping along with exceptional customer service from Goods Japan.

// Handles basket preview popup interactions and trusted seal popup link document.addEventListener("DOMContentLoaded", function () { const button = document.querySelector(".toggle-basket-preview.nav-link"); const popup = document.getElementById("customPopup"); const closeBtn = document.getElementById("closePopupBtn"); if (button && popup) { button.addEventListener("click", function (e) { e.preventDefault(); // Prevent default button behavior popup.style.display = "flex"; // Show the popup when button is clicked }); } if (closeBtn && popup) { closeBtn.addEventListener("click", function () { popup.style.display = "none"; // Hide the popup when "Got it" button is clicked }); } document.addEventListener("keydown", function (e) { if (e.key === "Escape" && popup) { popup.style.display = "none"; // Close the popup if Escape key is pressed } }); }); // Ensure the element with id "trusted_seal_link" exists before adding the event listener const yourLink = document.getElementById("trusted_seal_link"); if (yourLink) { yourLink.addEventListener('click', function (event) { event.preventDefault(); // Open the URL in a new window, ensuring security best practices with 'noopener noreferrer' window.open('https://www.etrust.pro/info/844.html', 'view', 'height=610,width=430,resizable=no,toolbar=no,location=no,scrollbars=yes,status=no'); }); } // Handles the dismissible header banner and initializes the multi-item carousel $(document).ready(function () { // Check if the 'alerted_check' exists in localStorage const isAlerted = localStorage.getItem('alerted_check'); if (!isAlerted) { // Fade in the headerstrip-wrapper with a defined duration const fadeInDuration = 7000; $("div.headerstrip-wrapper").fadeIn(fadeInDuration); } // Handle dismissing banners using event delegation for better performance $(document).on('click', '.js-banner__dismiss', function () { $(this).parent().hide(); localStorage.setItem('alerted_check', 'yes'); }); // Carousel multi-item logic $('.carousel.carousel-multi-item.v-2 .carousel-item').each(function () { let next = $(this).next(); if (!next.length) { next = $(this).siblings(':first'); } next.children(':first-child').clone().appendTo($(this)); // Clone the next 3 items to ensure the carousel displays multiple items for (let i = 0; i < 3; i++) { next = next.next(); if (!next.length) { next = $(this).siblings(':first'); } next.children(':first-child').clone().appendTo($(this)); } }); // Brands slider logic const brandsSlider = $('.brands_slider'); if (brandsSlider.length) { brandsSlider.owlCarousel({ loop: true, autoplay: true, autoplayTimeout: 5000, nav: false, dots: false, autoWidth: true, items: 8, margin: 42 }); // Initialize previous and next buttons for brands slider, ensuring the elements exist const prevButton = $('.brands_prev'); const nextButton = $('.brands_next'); if (prevButton.length) { prevButton.on('click', function () { brandsSlider.trigger('prev.owl.carousel'); }); } if (nextButton.length) { nextButton.on('click', function () { brandsSlider.trigger('next.owl.carousel'); }); } } }); // hide announcement const banner = document.querySelector('.banner-announcement'); window.addEventListener('scroll', () => { if (window.scrollY > 0) { banner.style.display = 'none'; // hide when scrolling down } else { banner.style.display = 'block'; // show when at top } });