Skip to content

List Stock Lots

GET
/admin/stock-lots
curl --request GET \
--url 'http://localhost:9000/admin/stock-lots?limit=15&offset=0'
limit
integer
default: 15
offset
integer
0
order
string
fields
string
inventory_item_id
string
stock_location_id
string
enabled
boolean
q
string

OK

Media type application/json
object
stock-lots
Array<object>
object
id
string
inventory_item_id
string
stock_location_id
string
lot_number
string
description
string
enabled
string
stocked_quantity
string
created_at
string format: date-time
updated_at
string format: date-time
count
integer
limit
integer
offset
integer
Example generated
{
"stock-lots": [
{
"id": "example",
"inventory_item_id": "example",
"stock_location_id": "example",
"lot_number": "example",
"description": "example",
"enabled": "example",
"stocked_quantity": "example",
"created_at": "2026-04-15T12:00:00Z",
"updated_at": "2026-04-15T12:00:00Z"
}
],
"count": 1,
"limit": 1,
"offset": 1
}