# Get Product list by identifiers

## GET by identifiers

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

This endpoint will return the required attributes of products, identified by the unique identifiers such as EAN, UPC, SKU, etc.

#### Query Parameters

| Name   | Type  | Description                         |
| ------ | ----- | ----------------------------------- |
| fields | array | returned attributes of each product |
| ids    | array | identifier values, maximum 100      |

#### Headers

| Name           | Type   | Description                                 |
| -------------- | ------ | ------------------------------------------- |
| Authentication | string | The Bearer token to grant access to the API |

{% tabs %}
{% tab title="200 The response here is a map of the identifier as the key and the required attributes of the products as the value." %}

```
{
  "87162143127": {
    "esin": "0SGAT12SG25F",
    "brand": "Kapas Kraft"
  },
  "623731HSHS": {
    "esin": "7HASI6ASDJ8S",
    "brand": "Kapas Kraft"
  }
}
```

{% endtab %}
{% endtabs %}
