> For the complete documentation index, see [llms.txt](https://docs.digitalriver.com/commerce-api/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.digitalriver.com/commerce-api/general-resources/global-commerce/products/inventory-status.md).

# Inventory status

The following [`GET /v1/shoppers/me/products/{productId}/inventory-status`](https://docs.digitalriver.com/commerce-api-references/shopper-apis/browse-product-discovery/inventory-status#v1-shoppers-me-products-productid-inventory-status) request gets the inventory for a specific product. You must provide the product `id`.

{% tabs %}
{% tab title="cURL request" %}

```http

curl --location --request GET 'http://{host}/v1/shoppers/me/products/{productId}/inventory-status' \
--header 'Content-Type: application/json' \
--header 'Authorization: Basic ***' \
```

{% endtab %}

{% tab title="200 OK response" %}
You will receive a `200 OK` response.

```json
{
   "inventoryStatus": {
      "product": {
         "id": "{productId}",
         "externalReferenceId": "{externalReferenceId}",
         "companyId": "{companyId}",
         "_uri": "https://api.digitalriver.com/v1/shoppers/me/products/{productId}"
      },
      "availableQuantity": "0",
      "availableQuantityIsEstimated": "false",
      "productIsInStock": "false",
      "productIsAllowsBackorders": "false",
      "productIsTracked": "true",
      "requestedQuantityAvailable": "false",
      "status": "PRODUCT_INVENTORY_OUT_OF_STOCK",
      "statusIsEstimated": "false",
      "expectedInStockDate": "2021-08-12T00:00:00.000Z",
      "customStockMessage": "",
      "_uri": "https://api.digitalriver.com/v1/shoppers/me/products/{productId}/inventory-status"
   }
}
```

{% endtab %}
{% endtabs %}
