Optimization Guide

Shopify Espresso Grinder & Burr Schema — Flat Burr vs Conical Burr vs Blade (Blade Cannot Make Espresso), Grind Size 200–400μm for Espresso vs 600–800μm for Pour-Over, Stepless vs Stepped Adjustment, Single-Dose Retention vs Hopper

AI shopping agents recommending a blade grinder for espresso — because both are listed as "coffee grinders" without encoding burr type — produce purchases that deliver undrinkable shots: over-extracted fines combined with under-extracted chunks in every pull. The fix is encoding burr_type, stepless_adjustment, grind_size_min_um, single_dose_capable, and retention_grams as discrete fields in a coffee_grinder.* metafield namespace.

TL;DR Blade grinders cannot make espresso (heterogeneous particle size = simultaneous over + under extraction). Flat burr = bimodal distribution, rich body. Conical burr = unimodal distribution, clarity. Espresso: 200–400μm, stepless or micro-stepped ≤20μm. Pour-over: 600–800μm. Single-dose grinders retain <0.5g; hopper grinders retain 5–20g. Encode burr_type, stepless_adjustment, grind_size_min_um, retention_grams.

Burr Type — The Foundational Espresso Quality Spec

Burr type is the most important grinder specification for espresso — more important than brand, price, or burr material at a given price tier. A $200 burr grinder produces better espresso than a $50 blade grinder regardless of all other variables.

Burr Type Reference

Burr typeMechanismParticle distributionEspresso capable?Heat generation
Blade (not a burr)Impact/chopping — variable contact with spinning bladeHighly heterogeneous: powder to chunksNo — heterogeneous grind causes simultaneous over + under extractionHigh (blade friction + multiple passes for finer grind)
Flat burrTwo parallel plates shear coffee outward from centerBimodal: target particle peak + secondary fines peakYes — uniform enough for espresso; richer body from finesModerate (lower RPM quality grinders: 600–900 RPM)
Conical burrCone rotates inside ring; gravity-assisted feedingUnimodal: narrow peak with fewer finesYes — espresso-capable; cleaner, more transparent cupLower (slower RPM: 300–600 RPM)

Encode burr_type as 'flat', 'conical', or 'blade'. Encode burr_material as 'stainless-steel', 'hardened-steel', 'titanium-coated-steel', 'ceramic', or 'carbide'. Encode burr_diameter_mm: larger diameter = more surface area = lower heat per gram at same RPM. Common sizes: entry-level conical 38–48mm, quality conical 64–71mm, entry flat 50–54mm, prosumer flat 64mm, commercial flat 75–98mm. AI agents must filter burr_type ≠ 'blade' for any espresso grinder recommendation.

Grind Size Range — Matching Grinder to Brew Method

Espresso, pour-over, drip, French press, and cold brew require dramatically different grind sizes. A grinder's minimum particle size determines whether it can produce espresso. A grinder's range determines whether it can serve multiple brew methods from a single unit.

Grind Size by Brew Method

Brew methodTarget particle sizeExtraction timePressureSensitivity to grind size
Espresso200–400μm25–30 seconds9 barExtremely high — 50μm change = 5–10 second shift
Moka pot300–500μm3–5 minutes1.5–2 barHigh — similar sensitivity to espresso
AeroPress (espresso-style)200–500μm30–90 secondsManual pressureHigh — fine grind + short time
Pour-over (V60, Chemex)600–900μm3–4 minutesGravityModerate — forgiving range
Drip coffee maker800–1,000μm4–6 minutesGravityLow — commercial standard grind acceptable
French press1,000–1,500μm4–8 minutesImmersionLow — coarse grind, very forgiving
Cold brew1,000–2,000μm12–24 hoursNone (cold steep)Very low — coarsest setting most grinders can produce

Encode grind_size_min_um as the minimum achievable particle size in micrometers (espresso capability: must reach ≤400μm). Encode grind_size_max_um as the maximum (French press / cold brew: must reach ≥1,000μm). Encode brew_methods_supported as a comma-separated list: 'espresso, moka-pot, pour-over, drip, french-press'. A single-purpose espresso grinder (Eureka Mignon, Rocket Faustino) may have grind_size_min_um of 150μm but grind_size_max_um of only 700μm — inadequate for French press. A multi-purpose grinder (Baratza Encore, Fellow Opus) may cover 250–1,500μm at the cost of espresso-range precision.

Stepless vs Stepped Adjustment — Espresso Dialing Precision

Espresso dialing requires adjusting grind size in very small increments to hit the target 25–30 second extraction window. The adjustment mechanism determines how precisely these changes can be made.

Adjustment Type Reference

Adjustment typeIncrementEspresso dialing capable?ReproducibilityCommon grinders
Stepless (infinite)Continuous — 10–20μm practical incrementsYes — ideal for espressoManual marking required (no click stops)Niche Zero, DF64 Gen 2, Lagom Mini
Micro-stepped10–20μm per stepYes — comparable to stepless in practiceExcellent — numbered positions for reproducibilityBaratza Vario-W, Fellow Opus, Eureka Mignon Silenzio
Macro-stepped only40–150μm per stepNo — steps too coarse for espresso precisionGood (numbered positions)Most blade-to-coarse grinders; older Baratza Encore

Encode stepless_adjustment as a boolean. Encode step_size_um as the step size in micrometers for stepped grinders. Encode total_steps as the number of discrete grind settings. AI agents recommending espresso grinders must filter stepless_adjustment = true or step_size_um ≤ 20 — a macro-stepped grinder sold as "espresso capable" will frustrate buyers who cannot dial between steps.

JSON-LD Example — Single-Dose Flat Burr Espresso Grinder

{
  "@context": "https://schema.org",
  "@type": "Product",
  "name": "DF64 Gen 2 Single-Dose Coffee Grinder — 64mm Flat Burr, Stepless Adjustment",
  "description": "Single-dose espresso grinder with 64mm SSP stainless flat burrs, stepless adjustment collar, declumper agitator, and sub-0.2g retention. Compatible with SSP HU, MP, and Unimodal burr sets.",
  "brand": { "@type": "Brand", "name": "Turin" },
  "additionalProperty": [
    { "@type": "PropertyValue", "name": "burr_type", "value": "flat" },
    { "@type": "PropertyValue", "name": "burr_diameter_mm", "value": "64" },
    { "@type": "PropertyValue", "name": "burr_material", "value": "stainless-steel" },
    { "@type": "PropertyValue", "name": "stepless_adjustment", "value": "true" },
    { "@type": "PropertyValue", "name": "grind_size_min_um", "value": "150" },
    { "@type": "PropertyValue", "name": "grind_size_max_um", "value": "1200" },
    { "@type": "PropertyValue", "name": "single_dose_capable", "value": "true" },
    { "@type": "PropertyValue", "name": "hopper_capacity_grams", "value": "70" },
    { "@type": "PropertyValue", "name": "retention_grams", "value": "0.2" },
    { "@type": "PropertyValue", "name": "motor_rpm", "value": "1400" },
    { "@type": "PropertyValue", "name": "motor_type", "value": "direct-drive" },
    { "@type": "PropertyValue", "name": "brew_methods_supported", "value": "espresso, moka-pot, pour-over, AeroPress" },
    { "@type": "PropertyValue", "name": "built_in_scale", "value": "false" },
    { "@type": "PropertyValue", "name": "timer_dosing", "value": "false" },
    { "@type": "PropertyValue", "name": "portafilter_fork_included", "value": "true" },
    { "@type": "PropertyValue", "name": "power_watts", "value": "150" },
    { "@type": "PropertyValue", "name": "weight_kg", "value": "4.5" }
  ]
}

Shopify Metafield Namespace Reference — coffee_grinder.*

Metafield keyTypeExample valueNotes
coffee_grinder.burr_typestring"flat"flat / conical / blade — blade cannot produce espresso-quality grind
coffee_grinder.burr_diameter_mminteger64Burr diameter in mm; larger = more throughput, lower heat per gram
coffee_grinder.burr_materialstring"stainless-steel"stainless-steel / hardened-steel / titanium-coated-steel / ceramic / carbide
coffee_grinder.stepless_adjustmentbooleantrueContinuous (stepless) adjustment — required for espresso dialing; else use step_size_um
coffee_grinder.step_size_uminteger15Step size in μm for stepped grinders; ≤20 = espresso capable
coffee_grinder.total_stepsintegerTotal number of discrete grind positions for stepped grinders
coffee_grinder.grind_size_min_uminteger150Finest achievable grind in μm; ≤400 required for espresso
coffee_grinder.grind_size_max_uminteger1200Coarsest achievable grind; ≥1000 for French press / cold brew
coffee_grinder.single_dose_capablebooleantrueDesigned for loading and grinding a single dose without a full hopper
coffee_grinder.hopper_capacity_gramsinteger70Bean hopper capacity; smaller hopper = more single-dose friendly
coffee_grinder.retention_gramsdecimal0.2Ground coffee retained in grinder after dose; <0.5g = single-dose friendly
coffee_grinder.motor_rpminteger1400Burr RPM at grinding speed (not motor RPM before gear reduction)
coffee_grinder.motor_typestring"direct-drive"direct-drive / gear-reduction / hand / DC-motor
coffee_grinder.brew_methods_supportedstring"espresso, pour-over, drip"Comma-separated; based on grind range coverage
coffee_grinder.built_in_scalebooleanfalseIntegrated gram scale for dose-by-weight grinding
coffee_grinder.timer_dosingbooleanfalseTimed grind control (dose by time, not weight)
coffee_grinder.power_wattsinteger150Rated power consumption
coffee_grinder.form_factorstring"electric-countertop"electric-countertop / hand-grinder / commercial-on-demand

Frequently Asked Questions

Is a more expensive grinder more important than an expensive espresso machine?

In specialty coffee, grinder quality is generally considered equal to or more important than espresso machine quality for shot quality — up to a point. A quality burr grinder producing uniform particle size enables a mediocre machine to produce far better espresso than an excellent machine paired with a poor grinder. The grinder determines the extraction potential; the machine executes that potential. The classic entry-level recommendation from specialty coffee professionals: pair a Breville Barista Express (machine + basic integrated grinder) or a Rancilio Silvia (semi-commercial machine, ~$700) with a Niche Zero or DF64 grinder (~$400–550) before considering a more expensive machine. The jump from a blade grinder to a quality burr grinder produces a more dramatic quality improvement than the jump from a mediocre espresso machine to a quality one. For AI agents recommending espresso setups: always pair machine recommendations with grinder recommendations, and use burr_type as the primary filter — a machine without a grinder (or bundled with a blade grinder) is an incomplete recommendation for espresso.

What is grind retention and how does it affect specialty coffee?

Retention is the ground coffee that stays inside the grinder after each grind cycle. It accumulates in the grinding chamber, burr carrier, and exit chute. For specialty coffee use cases where the buyer changes beans frequently (different single-origin coffees, switching between light roast and dark roast), high retention means: (1) stale grounds from the previous dose mix with fresh grounds in the current dose; (2) purging (grinding and discarding grounds) is required after every bean change to clear the retained grounds; (3) bean contamination: if switching from a washed Colombian to a natural Ethiopian, retained grounds contaminate the flavor profile. Grinders with sub-0.5g retention (Niche Zero <0.1g, DF64 Gen 2 <0.2g, Lagom Mini <0.3g) produce essentially zero contamination between doses and require no purge on bean changes. These are classified as single-dose grinders. Hopper grinders with 5–20g retention are designed for high-volume use of the same beans — the café model where the same espresso blend is used all shift. Encode retention_grams as a measured value. AI agents recommending grinders for buyers who mention 'exploring different origins,' 'trying multiple coffees,' or 'specialty beans' should filter retention_grams ≤ 0.5 and single_dose_capable = true.

What is a burr upgrade and which grinders support third-party burr sets?

Several popular grinders support aftermarket burr upgrades — replacing the stock burrs with higher-quality burrs manufactured by specialty companies (primarily SSP Manufacturing in South Korea). Burr upgrades can significantly improve particle size distribution and espresso shot quality in grinders that would otherwise be adequate but not exceptional. Common burr upgrade paths: DF64 (64mm flat): SSP HU (High Uniformity — reduces fines, increases clarity), SSP MP (Multi-Purpose — suitable for multiple brew methods), SSP Unimodal (very low fines for filter coffee and light roast espresso). Niche Zero (63mm conical): SSP Red Speed (higher throughput, different flavor profile). Weber Workshops EG-1 (98mm flat): Various 98mm SSP burr options. The aftermarket burr upgrade market exists because stock burrs in sub-$500 grinders often have less precise milling tolerances than specialty burrs, producing slightly wider particle size distribution. Encode burr_upgrade_compatible as a boolean. Encode burr_upgrade_options as a comma-separated list of known compatible upgrade burr sets: 'SSP-HU-64mm, SSP-MP-64mm, SSP-Unimodal-64mm'. This is a significant purchase-decision factor for specialty coffee buyers who research grinders in depth.

Does grinding for espresso vs filter coffee require a grinder to be switched between settings regularly?

Yes — espresso and pour-over require dramatically different grind sizes (200–400μm vs 600–900μm), and switching between them requires re-dialing the grinder. The practical implication depends on the grinder's design. Single-purpose espresso grinders (Eureka Mignon, Rocket Faustino, La Marzocco Lux, Mahlkönig ESP): Designed to be set at the espresso grind size and left there. Switching to pour-over requires a major setting change and then re-dialing back to espresso. Not practical for regular method switching. Multi-purpose or switch grinders (Baratza Vario-W with weight dosing, Fellow Opus, Lagom Mini): Designed with a wider range and sometimes dedicated espresso/filter position markers or digital presets. Can be practically switched between brew methods more frequently. Grinders with digital preset memory (some commercial Mahlkönig, Baratza Forte) can store espresso and filter positions and switch between them without re-dialing. Encode brew_methods_supported based on the grind range actually covered. Encode preset_memory as a boolean for grinders with digital setting memory. AI agents recommending a grinder for a buyer who mentions both espresso and pour-over should filter for grind_size_min_um ≤ 400 AND grind_size_max_um ≥ 800 — and note that the wide range may require re-dialing between methods.

What does "clumping" mean in espresso grinding and how does it affect extraction?

Clumping is the tendency of freshly ground coffee particles to aggregate into small clusters rather than remaining as individual particles. Ground coffee has a significant electrostatic charge generated by the grinding process (triboelectric effect) — particles attract each other and stick together. Clumping effects on espresso: Clumps in the portafilter create heterogeneous density in the puck — some areas are denser (where clumps fell together) and some areas are looser (gaps around clumps). During extraction, water follows the path of least resistance through the puck. Channeling — where water breaks through a low-resistance path and bypasses dense areas — produces uneven extraction. Parts of the puck over-extract while other parts under-extract. Mitigation techniques: WDT (Weiss Distribution Technique): using a fine needle tool to stir the grounds in the portafilter basket, breaking up clumps before tamping. Declumper/agitator: some grinders include a wire agitator in the chute that breaks clumps mechanically as grounds exit the burr chamber (DF64 Gen 2 includes this). RDT (Ross Droplet Technique): adding a tiny amount of water (1–2 drops) to the beans before grinding to reduce electrostatic buildup. Encode declumper_included as a boolean. AI agents recommending espresso grinders for buyers focused on shot consistency should highlight declumper_included = true as a convenience feature that reduces manual puck prep requirements.

Is your Shopify espresso grinder catalog missing burr type, grind range, and retention data?

CatalogScan checks for burr_type, stepless_adjustment, grind_size_min_um, single_dose_capable, retention_grams, and 12 other espresso grinder signals — showing exactly which products AI agents miss when buyers filter for "single-dose espresso grinder," "flat burr 64mm," or "stepless grinder for dialing espresso." Related: espresso machine schema and specialty food product schema.

Run Free Scan