Amazon Inventory Data

Guide to Amazon inventory datasets in DataHawk; FBA planning, ledger detail, restock recommendations, and SQL examples for common inventory questions.

This guide explains Amazon inventory datasets for tracking stock, resolving discrepancies, and optimizing replenishment.

💡

View Your Inventory at the Country Level

If your goal is simply to see your ASIN/SKU inventory the same way Seller Central shows it, use:

  • FBASELLER_INVENTORY_FBA_PLANNING: FBA qty with AI-driven recommendations for aged stock and removals
  • FBMSELLER_INVENTORY_ALL_LISTINGS: Your catalog with pricing and availability for MFN

These tables show your day-to-day inventory quantities at the country level with key fields: stock, aging, health, and availability.

Inventory Datasets

⚠️

Tables labeled No deduplication below return raw snapshots with possible duplicate rows. Deduplicate in your own query (e.g. by OBSERVATION_DATE + SKU + FULFILLMENT_CENTER) before aggregating.

SchemaViewPurposeData FreshnessGeographic Scope
RAW_INVENTORYRAW_INVENTORY_FBALatest snapshot of FBA inventory (sellable/unsellable stock, inbound shipments). No deduplicationDailyRegion-based
RAW_INVENTORYRAW_INVENTORY_FBA_HISTORYDaily historical snapshots of FBA inventory. No deduplicationDailyRegion-based
SELLING_PARTNERSELLER_INVENTORY_FBA_HISTORY_DAILYDaily seller-level inventory snapshots. No deduplicationDailyRegion-based
RAW_INVENTORYRAW_INVENTORY_RESTOCK_RECOMMENDATIONSAmazon's restock advice for SKUs with ≤14 days of supplyDailyMX, FR, DE, CA, JP, US, IT, ES, GB
SELLING_PARTNERSELLER_INVENTORY_LEDGER_DETAILGranular log of all inventory movements (shipments, returns, adjustments, removals); past 18 monthsDaily (≤3 day delay)Region + Country + warehouse
SELLING_PARTNERSELLER_INVENTORY_LEDGER_SUMMARYDaily aggregated view of inventory healthDaily (≤3 day delay)Region + Country + warehouse
SELLING_PARTNERSELLER_INVENTORY_FBA_PLANNINGFBA qty, AI-driven recommendations for aged stock, pricing, and removalsDailyAll except MX
SELLING_PARTNERSELLER_INVENTORY_ALL_LISTINGSSnapshot of your catalog. Current pricing and quantity for MFNDailyMarketplace Key
Inventory Dataset Decision Tree

Practical Scenarios & Example Queries

Inventory Source Reports Flow

"How much sellable AFN stock do I have for SKU-X today in US?"

SELECT SKU, AFN_FULFILLABLE_QUANTITY, AFN_INBOUND_SHIPPED_QUANTITY
FROM RAW_INVENTORY_FBA
WHERE SKU = 'X';

"Why did my inventory drop by 200 units in the US last week?"

SELECT EVENT_TYPE, QUANTITY, FULFILLMENT_CENTER, DATE
FROM SELLING_PARTNER.SELLER_INVENTORY_LEDGER_DETAIL
WHERE SKU = 'X' AND COUNTRY = 'US'
AND DATE BETWEEN '2024-01-01' AND '2024-01-07';

"Which FBA SKUs need urgent restocking?"

SELECT SKU, ALERT, RECOMMENDED_REPLENISHMENT_QTY
FROM RAW_INVENTORY_RESTOCK_RECOMMENDATIONS
WHERE ALERT IN ('low_stock', 'out_of_stock');

"Which aged SKUs should I remove to avoid storage fees?"

SELECT SKU, INV_AGE_365_PLUS_DAYS, RECOMMENDED_ACTION, ESTIMATED_STORAGE_COST
FROM SELLING_PARTNER.SELLER_INVENTORY_FBA_PLANNING
WHERE INV_AGE_365_PLUS_DAYS > 0;

"How has my sellable stock for ASIN-Y changed over the past month?"

SELECT OBSERVATION_DATE, AFN_FULFILLABLE_QUANTITY
FROM SELLER_INVENTORY_FBA_HISTORY_DAILY
WHERE ASIN = 'Y'
AND OBSERVATION_DATE BETWEEN '2024-01-01' AND '2024-01-31';

"Amazon says restock but I have inventory"

SELECT estimated_excess_quantity, weeks_of_cover_T30
FROM SELLING_PARTNER.SELLER_INVENTORY_FBA_PLANNING
WHERE SKU = 'YOUR_SKU';

If weeks_of_cover_T30 = 1, Amazon expects a demand surge despite current stock levels.

On this page