# Inventory status

The following [`GET /v1/shoppers/me/products/{productId}/inventory-status`](https://app.gitbook.com/s/X2fWaY1Kp5sXA1fmOL7z/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 %}
