Syntax
=DRAGON_INVENTORY_DETAILS(account, [ASIN/SKU], [marketplace], [columns], [header], [transpose])
Parameters in [brackets] are optional. Leave an optional parameter blank to include everything.
This page is also available inside Sheets – type
=DRAGON_INVENTORY_DETAILS("help") in any cell to get the same reference without leaving your spreadsheet.Sample output
Illustrative values – your sheet shows your account's live data.
A1fx
=DRAGON_INVENTORY_DETAILS("Myaccount", "B0C87GTM5G", "US")| A | B | C | D | E | F | G | H | I | |
|---|---|---|---|---|---|---|---|---|---|
| 1 | marketplace | snapshot_date | sku | asin | fnsku | condition | warehouse_quantity | fulfillable_quantity | … |
| 2 | US | 2026-07-21 | MB-TEE-BLK-L_FBA | B0EXAMPLE1 | X0EXAMPLE1 | New | 0 | 0 | … 10 more |
| 3 | US | 2026-07-20 | MB-TEE-NVY-M_FBA | B0EXAMPLE2 | X0EXAMPLE2 | New | 19 | 19 | … 10 more |
| 4 | US | 2026-07-19 | MB-HAT-GRY_FBA | B0EXAMPLE3 | X0EXAMPLE3 | New | 12 | 12 | … 10 more |
| 5 | US | 2026-07-18 | MB-MUG-11OZ_FBA | B0EXAMPLE4 | X0EXAMPLE4 | New | 81 | 81 | … 10 more |
Parameters
| Parameter | Required | Description |
|---|---|---|
| account | Required | Account nickname or Amazon account id. |
| ASIN/SKU | Optional | Optional ASIN, SKU, or comma/space separated list. Also accepts a cell range like A2:A100 or INDIRECT() pointing to a list. |
| marketplace | Optional | Optional marketplace/country code such as US, CA, or MX. |
| columns | Optional | Optional comma-separated output columns. |
| header | Optional | Use no, false, or 0 to suppress the output header row. Default: Yes. |
| transpose | Optional | Use yes, true, or 1 to transpose the output. |
Columns
Columns are evaluated left to right: a field or group name adds columns, a leading - removes them. default and all select the default or full column set – for example compact,-seller_id.
| Column | Default | Description |
|---|---|---|
| seller_id | No | Seller id |
| marketplace | Yes | Marketplace |
| snapshot_date | Yes | Snapshot date |
| sku | Yes | SKU |
| asin | Yes | ASIN |
| fnsku | Yes | FNSKU |
| condition | Yes | Condition |
| fulfillment | No | Fulfillment |
| status | No | Status |
| warehouse_quantity | Yes | FBA warehouse quantity |
| fulfillable_quantity | Yes | FBA fulfillable quantity |
| unsellable_quantity | Yes | FBA unsellable quantity |
| reserved_quantity | Yes | FBA reserved quantity |
| total_quantity | Yes | FBA total quantity |
| inbound_working_quantity | Yes | FBA inbound working quantity |
| inbound_shipped_quantity | Yes | FBA inbound shipped quantity |
| inbound_receiving_quantity | Yes | FBA inbound receiving quantity |
| researching_quantity | Yes | FBA researching quantity |
| reserved_future_supply_quantity | Yes | FBA reserved future supply quantity |
| future_supply_buyable_quantity | Yes | FBA future supply buyable quantity |
| per_unit_volume | Yes | Per unit volume |
Column groups
Groups select several columns at once and combine with single fields in the columns parameter.
compact warehouse_quantity, fulfillable_quantity, unsellable_quantity, reserved_quantity, total_quantity, inbound_working_quantity, inbound_shipped_quantity, inbound_receiving_quantity, researching_quantity, reserved_future_supply_quantity, future_supply_buyable_quantity, per_unit_volume
Examples
=DRAGON_INVENTORY_DETAILS("Myaccount", "B0C87GTM5G", "US")
=DRAGON_INVENTORY_DETAILS("Myaccount", "B0C87GTM5G", "US", "compact")
Notes
- columns: use compact to show inventory quantity fields without marketplace, SKU, ASIN, FNSKU, or condition context. default and all are also supported.
- columns are evaluated left to right. A field or group adds columns; prefix with - to remove a field or group.