Skip to content

Get Inventory By SKU

Request

Get Inventory for a Specific Product

📌 Description

This endpoint retrieves inventory details for a specific product using its unique productId. The response includes stock availability, storage location, and last update timestamp.

🔹 Use Cases

  • Checking real-time stock levels for a specific product.
  • Verifying if a product is available in a fulfilment centre.
  • Monitoring stock movements to optimise replenishment.
Security
OAuth2
Path
skustringrequired
curl -i -X GET \
  'https://developer-docs.quiqup.com/_mock/openapi/api/fulfilment/inventory/{sku}' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

Success response

Bodyapplication/json
availableinteger, (int64)(Current available quantity in stock )
coststring(Cost of the inventory item )
created_atstring, (date-time)(Timestamp when the inventory record was created )
damagedinteger, (int64)(Quantity of damaged items )
expiry_groupsArray of objects(Groups of inventory by expiry date )
inbound_statestring(InboundState represents the current state of inbound inventory )
productobject(types.Product)
product_idstring(Reference to the associated product )
qc_holdinteger, (int64)(Quantity of items on QC hold )
reservedinteger, (int64)(Quantity of reserved items (in picking) )
totalinteger, (int64)(Total quantity across all buckets (available + damaged + reserved + qc_hold) )
trackedboolean(Whether inventory tracking is enabled for this item )
updated_atstring, (date-time)(Timestamp when the inventory record was last updated )
vendorstring(Vendor or brand name of the product )
Response
{ "available": 0, "cost": "string", "created_at": "2019-08-24T14:15:22Z", "damaged": 0, "expiry_groups": [ {} ], "inbound_state": "string", "product": { "availability_status": 0, "barcode": "string", "batch_management": true, "cost_price": 0, "country_code_of_origin": "string", "created_at": "2019-08-24T14:15:22Z", "currency": "AED", "description": "string", "dimensions": {}, "expiry_management": true, "harmonized_system_code": "string", "id": "string", "image": "string", "inbound_expiry_threshold_days": 0, "inventory_tracked": true, "name": "string", "outbound_expiry_threshold_days": 0, "partner_product_id": "string", "platform_price": 0, "requires_shipping": true, "retail_price": 0, "selling_price": 0, "sku": "string", "status": "active", "total_sales": 0, "track_expiry": true, "type": "string", "updated_at": "2019-08-24T14:15:22Z", "vendor": "string", "weight": 0, "weight_unit": "string" }, "product_id": "string", "qc_hold": 0, "reserved": 0, "total": 0, "tracked": true, "updated_at": "2019-08-24T14:15:22Z", "vendor": "string" }