> For the complete documentation index, see [llms.txt](https://eshop.gitbook.io/eshopbox-developers/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://eshop.gitbook.io/eshopbox-developers/product/untitled/get-a-product-inventory.md).

# Get Inventory Summary

## Get Inventory Summary

<mark style="color:blue;">`GET`</mark> `https://{{workspace}}.myeshopbox.com/api/v1/inventorySummary`

This endpoint allows you to get an inventory summary, for warehouses in the Query parameter.\
Here inventory summary means, it contains the quantity of all products in all of the warehouses in respective statuses.&#x20;

#### Query Parameters

| Name        | Type   | Description                                                                      |
| ----------- | ------ | -------------------------------------------------------------------------------- |
| warehouseId | string | Comma-separated warehouse codes against which the inventory summary is required. |

#### Headers

| Name           | Type   | Description                                     |
| -------------- | ------ | ----------------------------------------------- |
| Authentication | string | The Bearer token is required to access the API. |

{% tabs %}
{% tab title="200 Inventory" %}

```
{
    "outwardInProcess": 10,
    "sellable": 4,
    "inwardInProcess": 5,
    "nonSellable": 3
}
```

{% endtab %}
{% endtabs %}
