Skip to content

Nail Amazon Prep With New SP API Details

Jacob Heinz
Jacob Heinz |

Amazon just made prep a first-class citizen in the SP API. Translation: fewer chargebacks, fewer receiving delays, and way less back-and-forth with your 3PL.

If you’ve ever had a shipment stalled over a missed poly-bag or wrong bundle label, you know the pain. One missed instruction ripples into unplanned service fees, defects, and customers stuck in Pending Hell.

Now there’s a fix. With the new preparation details support—headlined by listPrepDetails—you can pull, with code, the exact prep Amazon expects and set it before any box leaves your warehouse. No guessing. No spreadsheet digging. No “we’ve always done it this way.”

This upgrade doesn’t just tidy your workflow. It hardwires compliance into your inbound pipeline. That means fewer dock surprises, faster receiving, and clean metrics on the KPI that actually matters: units available for sale.

Bottom line: turn policy into data, and data into muscle memory. When prep is explicit and your system enforces it, teams stop improvising and shipments stop drifting. That’s how you get speed without chaos.

TL;DR

  • New prep details endpoint (listPrepDetails) lets you retrieve Amazon’s item-level prep needs before creating or finalizing inbound shipments.
  • You can also set prep details on shipment items, aligning your WMS and 3PL with Amazon’s rules.
  • Expect fewer unplanned services, faster receiving, and more predictable lead times.
  • Wire it into your inbound flow right after item validation and before cartonization.
  • Build guardrails: idempotency keys, retries, and drift checks when guidance changes.
  • Cache guidance per ASIN with a sensible TTL so you don’t hammer the API or use stale rules.
  • Use results to auto-quote labor and materials, then compare Amazon vs. in-house prep costs in real time.
  • Track before/after: inbound exceptions, unplanned service line items, and time-to-available should trend down.

Why this tiny API tweak

The cost of guessing

Inbound compliance is a quiet profit leak. When items arrive missing bubble wrap, suffocation warnings, or proper FNSKU labels, Amazon may apply unplanned services, delay receiving, or flag defects. Alone, each one looks small. At scale, they add up to slower sell-through, extra fees, and Buy Box drag.

Multiply “one small miss” by a few thousand units a week and it becomes real money. More touches at the FC, more back-and-forth with support, and more days where inventory sits in limbo. Your cash flow feels it. Your ads budget feels it. Your ops team definitely feels it.

Turning policy into code

The prep details update means you can ask Amazon, with code: “How should these SKUs be prepped for this shipment to this fulfillment center?” No more scraping help pages or fragile rules. You get structured guidance, and your system enforces it every time.

That clarity reduces tribal knowledge. New warehouse associate? No problem—your WMS prints the right label and blocks carton close if prep isn’t confirmed. New 3PL? Send machine-readable instructions instead of a PDF novel. Less interpretation, fewer exceptions.

Where this shows up

  • Fewer unplanned services: You preempt bagging, bubble wrap, labeling, and set prep before items ship.
  • Faster receiving: The right prep reduces exceptions and manual handling at FCs.
  • Predictable labor: Your team and 3PL work from the same machine-enforced instructions.

Example scenario: You’re sending a mixed case of toys, candles, and a glassware set. listPrepDetails flags bubble wrap for glass, poly-bag and suffocation warning for plush toys, and set labeling for bundles. Your WMS prints the right labels, your 3PL uses the right materials, and your shipment lands clean.

Add one more twist: if the API says manufacturer barcode eligible on certain SKUs, you skip FNSKU labeling for those and speed up the line. Less label printing. Less peeling. More units per hour.

How listPrepDetails fits

Suggested integration point

Drop listPrepDetails right after catalog validation and before cartonization or pick-wave creation. That’s the sweet spot: you know the ASINs or SKUs and destination, but you haven’t locked cartons or booked carrier labels yet.

If you place it too early, you’ll fetch guidance you can’t apply. Too late, and you’ll find prep changes when cartons are taped and ready. Right after item validation is the Goldilocks zone.

What you’ll request and receive

While exact payloads vary by version, expect to send item identifiers, destination FC or marketplace, and quantities. The response typically includes:

  • Required prep types (poly-bag, bubble wrap, taping, set labeling)
  • Labeling guidance (FNSKU required vs. manufacturer barcode eligible)
  • Ownership fields (who applies prep: you vs. Amazon)
  • Notes for special handling (fragile, sharp, liquid, adult)

You can then persist these instructions on each shipment line and push them to work orders for your warehouse or 3PL. If the API shows Amazon will own some prep, show the estimated costs to your ops team for approval.

Add context fields like ship method and planned ship date to your own records. If dates slip, your drift checker can re-validate guidance and surface any changes automatically.

Aligning with inbound creation

When you create or update inbound shipments through the Fulfillment Inbound API, include the returned prep details on each item line. Pair this with labeling info so your process is exact. Your WMS knows which label to print and which material to use, and your 3PL gets a work order that mirrors Amazon’s rules.

Pro tip: cache guidance per ASIN with a TTL and invalidate on marketplace or FC changes. Prep rules can vary by region or FC capabilities.

For audit, store a copy of the guidance payload alongside the shipment record. If a dispute pops up later, you can prove what instructions were returned, when, and what your team applied.

Ship smarter

Embed rules in your WMS

  • Map prep types to bill-of-materials: “Bubble wrap” maps to material SKU WRAP-12 and labor standard 0.6 min per unit.
  • Autoprint labels: If guidance says FNSKU required, force FNSKU label printing at the pack station.
  • Gate packing: Block carton close if any unit lacks required prep sign-off.
  • Visual prompts: Show photo-level hints for common prep types to reduce mistakes.
  • Material checks: Don’t start a wave if on-hand poly-bags or wrap rolls are below needs.

3PL collaboration that doesn’t suck

Pass prep instructions to your 3PL as structured data, not a PDF attachment. If they use a standard WMS, like 3PL Central or ShipHero, include:

  • Line-level prep types
  • Label files or label data
  • SLA dates tied to booked pickup

Add a “prep compliance” tick box in their portal. If they deviate, like running out of poly-bags, force an exception record and alert your ops.

Tie exceptions to billing. If the 3PL misses prep you asked them to handle, it should trigger a chargeback chat—or at least a review—so the cost doesn’t quietly bleed your margins.

Labeling, barcodes, and set builds

listPrepDetails pairs nicely with barcode guidance. If the item is manufacturer barcode eligible, skip FNSKU labeling and save time. If it requires set labeling, force the “sold as set” label and shrink-wrap or poly-bag the bundle so it can’t separate.

“Good prep systems make compliance the default,” as one operations lead at a high-volume FBA brand told me. “The second anything becomes a judgment call, your receiving times double.”

Strengthen set builds by generating a single work ticket for bundle components and blocking the ticket until all component scans are complete. No complete set, no label.

Guardrails

Expect the usual API chaos

  • Timeouts and rate limits: Implement retries with jitter and backoff. Respect the documented rate quotas in the Fulfillment Inbound API.
  • Partial results: If some items fail guidance, surface it early so ops can reroute or split shipments.
  • Idempotency: Use idempotency keys on shipment creation and updates so you don’t double-apply prep.
  • Monitoring: Add alerts on guidance error rates and latency so your team knows when to switch to a fallback playbook.

Catalog and marketplace mismatches

  • New-to-catalog SKUs may return incomplete guidance. Default to conservative: FNSKU label and poly-bag if there’s any risk of spills or scuffs.
  • Marketplace-specific rules: Packaging and labeling can differ by region. Don’t reuse US guidance for EU shipments.
  • Multi-ASIN kits: Ensure each component’s guidance is met before sealing the outer bundle.

Hazmat, meltables, and adult products

Dangerous goods and temperature-sensitive items trigger stricter handling. If guidance flags these categories, require special materials and hold shipments until all checks pass. For meltable or restricted windows, your system should block inbound creation outside acceptable dates.

Add a “category lock” rule: once a SKU is flagged hazmat or meltable, require approval to override any prep or routing steps. Append a checklist, like battery terminals taped or inner poly-bag thickness, to the work order.

Ownership and fees

If the API indicates Amazon-owned prep for certain steps, show that to finance and ops. Sometimes paying Amazon to do it is cheaper than slowing your dock. Other times, it’s a margin leak you want to avoid.

Keep a drift detector. If guidance changes between planning and ship date, re-validate and generate a delta task list for the warehouse. Better a late line stop than a receiving exception at the FC.

Security and permissions

Limit who can override prep guidance in your tools. Tie overrides to user roles and require a reason code. Store a full audit trail so you can trace any exception to a person and timestamp.

What this unlocks next

Predictable inbound lead times

Cleaner prep leads to fewer FC exceptions and smoother receiving. That tightens the standard deviation on your “PO to available for sale” metric. With that, your demand planning and ad spend get less whiplash.

Once variance shrinks, you can push inventory later without risking stockouts. Or launch promos knowing your inbound won’t jam the FC.

Automation opportunities

  • Auto-quote 3PLs: Turn prep guidance into a per-unit labor and material quote and compare against Amazon’s prep fees.
  • Dynamic cartonization: If the item needs bubble wrap, expand carton dimensions and adjust dunnage so weights and dims stay valid.
  • Labeling robots: Feeding consistent, exact label files to automated applicators is easier with an API-driven prep source of truth.
  • Dock scheduling: Prioritize dock time for guidance-compliant cartons least likely to trigger FC holds.

Compliance as a dataset

Store guidance per ASIN and measure defect rates before and after enforcement. If exceptions drop, you’ll see it in fewer inbound emails, fewer unplanned service line items, and faster receiving scans in FC-level metrics.

A smart angle: annotate ASINs with a “prep complexity score” to forecast labor and decide whether to push more of that category to FBM during peak.

Then feed that score into purchasing. High-complexity items may need different carton setups, more generous lead times, or alternate packaging from the supplier to reduce prep time.

Technical quick-start

  • Inputs you need: ASIN or SKU, destination FC or marketplace, quantities.
  • Call order: validate items → call listPrepDetails → persist guidance → generate labels and work orders → create inbound shipment with prep details → cartonize → buy labels.
  • Storage: create a guidance table keyed by ASIN plus marketplace plus version. Include returned prep types, labeling status, ownership, and timestamp.
  • UI hooks: display required materials and labels at pick and pack, and block next steps until all prep checks pass.
  • Exceptions: if guidance is missing, default to conservative prep and flag the shipment for manual review.

Testing playbook

  • Unit tests: mock API responses for common prep types and verify WMS rules fire correctly.
  • Sandbox runs: push a fake inbound with a variety of SKUs, like fragile, plush, liquids, and bundles, and confirm work orders look right.
  • Pilot shipment: choose two to three SKUs with known prep, run the full flow, and compare with historical receiving times and unplanned services.
  • Rollout: expand SKU coverage in waves. Watch exceptions and flip back to manual for edge cases until stable.

Metrics to watch

  • Receiving time, from shipment to “available for sale,” and variance.
  • Inbound exceptions per 1,000 units.
  • Unplanned services fees as a percentage of COGS.
  • Prep-related defect rate or performance notifications.
  • Throughput at pack stations, units per hour, before vs. after enforcement.

When these trend the right way, you’ll feel it in inventory turns and ad efficiency.

Change management

  • Train with pictures: show examples of correct poly-bagging, bubble wrap, and label placement.
  • Keep materials stocked: prep fails when someone reaches for a bag that isn’t there.
  • Make the system the boss: don’t rely on memory; let the WMS block close when prep isn’t complete.
  • Celebrate the wins: share the inbound exception drop with the floor; it proves the process works.

Quick pulse check

  • Run listPrepDetails before cartonization to lock in correct materials and labels.
  • Persist guidance on shipment lines and send it to your 3PL as structured data.
  • Add guardrails: retries, idempotency, and drift checks if guidance changes.
  • Use guidance to auto-quote labor and choose between Amazon vs. in-house prep.
  • Track before and after: receiving time, exceptions, and unplanned fees should all improve.

Bookmark this list and bake it into your SOP. The whole point is to remove interpretation. The more exact your flow, the faster your freight moves and the steadier your margins get.

FAQs on prep details

What does listPrepDetails return

It returns structured instructions for item prep and labeling based on the ASIN or SKU, destination, and marketplace. Think prep types like poly-bag, bubble wrap, and taping, labeling needs like FNSKU vs. manufacturer barcode, and ownership of steps.

Can I set prep details

Yes. Include the prep details on inbound shipment items so your shipment reflects the guidance you retrieved. This keeps your WMS, 3PL, and Amazon aligned on what prep was applied and by whom.

Will this reduce fees

It should. When you apply the required prep before items arrive, Amazon doesn’t need to fix issues on the dock. That lowers the odds of unplanned services, exceptions, and delays. Always watch your fee and defect reports to confirm impact.

Do prep rules differ

They can. Regulations, barcode programs, and facility capabilities differ by region. Call the endpoint with the proper marketplace and destination context. Don’t assume US guidance applies to EU or JP.

How should I handle guidance changes

Add a final validation step before confirming carrier labels. If guidance changes, generate a delta task list, like add poly-bags to items A and B, and block carton close until updated.

What about dangerous goods

Expect stricter handling needs and extra checks. If guidance flags special categories, require approval and materials before you ship. When in doubt, follow Amazon’s prep and restricted products policies.

What if my 3PL can’t

Start simple: send a CSV with line-level prep types and required labels, and ask for a confirmation file back. Then move to API or EDI once they’re ready.

How do I handle bundles

Treat the bundle as its own SKU for labeling, but ensure each component’s guidance is met before sealing. Use scans to confirm all components are present, then apply the “sold as set” label and protective packaging.

Ship-ready in hours

  • Wire listPrepDetails after catalog validation, before cartonization.
  • Cache guidance per ASIN with a short TTL; invalidate on marketplace or FC change.
  • Map prep types to materials, labor standards, and label templates in your WMS.
  • Enforce at pack: block carton close if required prep or labels are missing.
  • Include prep details on inbound shipment items; store who did what, you vs. Amazon.
  • Add drift checks pre-label purchase; re-fetch if the shipment date slips.
  • Monitor impacts: receiving time, exceptions, and unplanned services lines.
  • Add audit logs: keep copies of guidance and applied steps per shipment line.
  • Train staff and 3PLs with photo examples and short checklists.
  • Review weekly: spot SKUs with persistent exceptions and update SOPs.

Here’s the punchline: compliance isn’t a policy problem—it’s a data problem. listPrepDetails turns fuzzy guidance into structured data your systems can actually enforce. If you embed it where decisions happen—label printing, pack stations, 3PL work orders—you’ll feel it in fewer surprises, faster receiving, and cleaner margins.

The brands that win inbound don’t “work harder at prep.” They remove the guesswork entirely. With prep instructions now in the SP API—and the ability to set them on shipment items—you can make the compliant path also the fastest path.

Want help operationalizing these SP-API workflows without rebuilding your WMS? Explore our platform Features.

See how peers cut unplanned services and tightened receiving SLAs in our Case Studies.

References

Share this post