Get Stock Lot
GET
/admin/stock-lots/{id}
const url = 'http://localhost:9000/admin/stock-lots/example?limit=20&offset=0';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'http://localhost:9000/admin/stock-lots/example?limit=20&offset=0'Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
string
Query Parameters
Section titled “Query Parameters ” limit
integer
offset
integer
order
string
fields
string
Responses
Section titled “ Responses ”OK
Media type application/json
object
stock-lot
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
inventory_item
object
stock_location
object
Example generated
{ "stock-lot": { "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", "inventory_item": {}, "stock_location": {} }}