# Get inventory warehouse related information

## Overview

In order to retrieve metadata of an existing inventory from existing warehouse, you must:

- Be authenticated user

Information on how you can authenticate: [Authentication](https://developer.sellercloud.com/dev-article/authentication/)

As soon as you do authentication and receive a valid token, it needs to be passed on the call for receiving the inventory information.

- Have valid ID of an existing inventory

## Endpoint

NOTE: Endpoint “GET /api/Inventory/{productID}/Warehouses/{warehouseID}” is obsolete as it does not support special characters in the productID. Use the new endpoint presented in this article.

Example for such endpoint is

https://tt.api.sellercloud.com/rest/api/Inventory/Warehouses

## Request

- Method Type: **HttpGet**  
- Authorization: Use **Bearer Token** "+ token received from token authentication  
- Header info: **Content-Type: application/json**  
- Parameters:

|     |     |     |     |
| --- | --- | --- | --- |
| Parameter | Data Type | Description | Is Required |
| productID | string | ID of existing inventory | true |
| warehouseID | integer | ID of existing warehouse filter | false |

## Response

```
{
  "ProductID": "test_sku",
  "AvailableQty": 150,
  "PhysicalQty": 200,
  "WarehouseID": 15
}
```

- If user is authenticated and provides a valid ID of an inventory, then response will be **Status Code 200 => OK** and inventory metadata in JSON format
- If user is not authenticated, then response will be **Status Code 401 => Not Valid Token**
- On server response => **Status Code 500 => Internal Server Error**
