This endpoint returns a paginated list of all products in your store’s inventory with comprehensive details including pricing, stock levels, and category information.
Query Parameters
Maximum number of items to return per page
Number of items to skip for pagination
Filter by product active status
Minimum price filter (in cents)
Maximum price filter (in cents)
order
string
default: "createdAt"
Field to order results by
Sort direction. Values: “ASC” or “DESC”
Response
Array of inventory items Show Inventory Item Object
Product category information External product identifier
Whether the product can be edited
Whether product is available on DoorDash
Whether product is available on Uber Eats
Whether product is available on Grub Hub
Response Example
[
{
"id" : "58" ,
"image" : "https://lula-inventory-service-staging.s3.amazonaws.com/images/1000019/Candy/1014132_1749556811814.webp" ,
"name" : "Wrigley's 5 Rain Spearmint Mega Pack" ,
"description" : "35 sticks" ,
"size" : "" ,
"category" : {
"id" : "ae8c7e12-4372-4266-9859-42d07559131b" ,
"name" : "Candy" ,
"category_order" : "2100" ,
"createdAt" : "2021-10-21T15:15:12.217Z" ,
"updatedAt" : "2021-10-21T15:15:12.217Z"
},
"price" : "99.80" ,
"upc" : "22000017901" ,
"quantity" : 50 ,
"external_id" : "22000017901" ,
"store_id" : "449235c1-3d04-4519-998b-40d2a621e5e0" ,
"is_editable" : true ,
"dsp_item_price" : 129.74 ,
"is_added_to_doordash" : false ,
"is_added_to_ubereats" : false ,
"is_added_to_grub_hub" : false
}
]
Use the limit and offset parameters to implement pagination for large inventories. The active parameter helps filter between active and inactive products.