Use discount code 'STACKSALAMI' at checkout to create a stack and save on shipping until you'd like your cards shipped to you!



Card Pre-Grade Services

In addition to our card breaking services, we also offer card pre-grading services. Card grading is the process of evaluating the condition of a sports card and assigning it a numerical grade based on various factors such as centering, corners, edges, surface, and overall eye appeal. This process helps collectors to accurately determine the value of their cards and make informed buying and selling decisions.

Our team of experienced evaluators uses the highest industry standards to evaluate potential grades, clean cards, and provide collectors with detailed reports on their cards' condition. Our card pre-grading services are reliable, affordable, and transparent, and we offer a variety of options to meet the needs of collectors at all levels.

If you are interested or have questions, please feel free to reach us at GrandSalamiSubs@outlook.com.

Here is a pre-submission preview video from our YouTube account. (All previews  and reveals are streamed live and recorded).


document.addEventListener('DOMContentLoaded', function() { const productJson = document.querySelectorAll('[id^=ProductJson-'); if (productJson.length > 0) { for (let i = 0; i < productJson.length; i++) { const current = productJson[i]; const sectionId = current.id.replace('ProductJson-', ''); const section = document.querySelector('[data-section-id="' + sectionId + '"]'); const product = JSON.parse(current.text); if (product.options.length === 1) { const unavailableVariants = []; for (let j = 0; j < product.variants.length; j++) { const variant = product.variants[j]; if (!variant.available) { unavailableVariants.push(variant); } } if (unavailableVariants.length > 0) { const mutationCallback = function() { const variantOptions = section.querySelectorAll('.single-option-selector option'); if (variantOptions.length > 0) { for (let k = 0; k < unavailableVariants.length; k++) { const unavailableVariant = unavailableVariants[k]; for (let l = 0; l < variantOptions.length; l++) { const option = variantOptions[l]; if (unavailableVariant.title === option.value) { option.remove(); } } } if (typeof observer === 'object' && typeof observer.disconnect === 'function') { observer.disconnect(); } } } const observer = new MutationObserver(mutationCallback); const addToCartForm = document.querySelector('form[action*="/cart/add"]'); mutationCallback(); if (window.MutationObserver && addToCartForm.length) { const config = { childList: true, subtree: true }; if (typeof observer === 'object' && typeof observer.disconnect === 'function') { observer.disconnect(); } observer.observe(addToCartForm, config); } } } } } });