---
title: "Find inventory lots based on search parameters."
method: POST
path: "/api/inventory-lots/list"
tags: ["Inventory Lot"]
---

# Find inventory lots based on search parameters.

`POST /api/inventory-lots/list`

## Query parameters

- `Sort.Field` string
- `Sort.Dir` 'ascending' | 'descending' — Specify sorting direction.
- `Skip` integer
- `Take` integer

## Request body

- InventoryLotRequestFindParameters — Parameters used for searching/finding inventory lots.
  - `name` string, nullable — Filter lots based on their name.
  - `itemIds` string[], nullable — Item ids to match. Please reference /api/items endpoint.
  - `system` boolean, nullable — Filter by whether the lot is considered a system-generated lot.

## Response `200`

List of inventory lots matching the filters

- InventoryLotDto[]
  - `id` string, required — Unique id associated to this entity.
  - `name` string, required — The name of the lot. It is not guaranteed to be unique inventory-wide, but only within an item.
  - `itemId` string, required — The item id that is associated to this lot. Please reference /api/items endpoint.
  - `quantity` number, double — Quantity associated to this lot.
  - `system` boolean, required — Designates if this is a system-generated lot.
  - `custom` boolean, required — Designates if this item is customized.
  - `expirationDate` string, date-time, nullable — The date that this lot is supposed to expire.

---

[API](https://skmtc.net/fulcrumpro/apis/fulcrum-publicapi.md) · [All operations](https://skmtc.net/fulcrumpro/apis/fulcrum-publicapi/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/fulcrumpro/fulcrum-publicapi/versions/1b5649cff14a/schema)
