# Inventories

## Get inventory

## Get an inventory

<mark style="color:blue;">`GET`</mark> `https://api.walleo.io/partners/v1/inventories/:id`

Get an inventory for a specific gift card.

#### Path Parameters

| Name                                 | Type   | Description    |
| ------------------------------------ | ------ | -------------- |
| id<mark style="color:red;">\*</mark> | String | Gift card code |

{% tabs %}
{% tab title="200: OK Return inventory" %}

```json
{
  "inventories": {
    "gift_card": {
      "code": "IKEAFR",
      "name": "Ikea France"
    },
    "end_to_end_api": {
      "enabled": true,
      "available_amount": "unlimited"
    },
    "stocks": [
      {
        "facial_value": 50,
        "owned_quantity": 5,
        "shared_quantity": 0
      }
    ]
  }
}
```

{% endtab %}
{% endtabs %}
