Skip to content

Get Inventory

Request

List All Inventory

📌 Description

This endpoint retrieves a list of all inventory items stored in the fulfilment centre under your account. Clients can filter the results using query parameters such as SKU or product ID.

🔹 Use Cases

  • Checking stock levels before placing new orders.
  • Filtering inventory to track specific products.
  • Verifying stock availability for customer fulfilment.
Security
OAuth2
Query
limitinteger, (int64)

Maximum number of items to return per page (1-100)

pageinteger, (int64)

Page number to return (starts at 1)

skustring

Filter inventory by product SKU

product_namestring

Filter inventory by product name

vendorstring

Filter inventory by vendor name

sortstring

Field to sort results by

sort_descboolean

Sort in descending order if true

curl -i -X GET \
  'https://developer-docs.quiqup.com/_mock/openapi/api/fulfilment/inventory?limit=0&page=0&sku=string&product_name=string&vendor=string&sort=string&sort_desc=true' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

Success response

Bodyapplication/json
inventoryArray of objects(Array of inventory items )required
paginationobject(pagination.PaginationMeta)required
Response
{ "inventory": [ {} ], "pagination": { "next": {}, "next_url": "string", "prev": {}, "prev_url": "string", "total": 0 } }