# Repzo API - Inventory

OpenAPI specification for Repzo Inventory endpoints.

**Version:** 1.0.0

## Overview

### Base URLs

- \*\*\*\*: `https://sv.api.repzo.me`

## Authentication

No authentication required.

## Endpoints

### `/inventory`

#### GET /inventory

**Summary:** Find inventory items

##### Parameters

| Name | Location | Type | Required | Description |
| ---- | -------- | ---- | -------- | ----------- |

| `params` | query | object | No | Query parameters for filtering inventory items |

##### Responses

**200** - A list of inventory items

Content-Type: `application/json`

---

## Data Models

### InventoryFindResult

| Property | Type | Required | Description |
| -------- | ---- | -------- | ----------- |

| `data` | array | No | No description |

| `meta` | object | No | No description |

### Inventory

| Property | Type | Required | Description |
| -------- | ---- | -------- | ----------- |

| `_id` | string | No | No description |

| `product` | string | No | No description |

| `variant` | string | No | No description |

| `warehouse` | string | No | No description |

| `quantity` | number | No | No description |

| `reservedQuantity` | number | No | No description |

| `availableQuantity` | number | No | No description |

| `cost` | number | No | No description |

| `lastUpdated` | string | No | No description |

| `createdAt` | string | No | No description |

| `updatedAt` | string | No | No description |

## TypeScript Usage

See [inventory-examples.md](./inventory-examples.md) for detailed TypeScript usage examples.
