Skip to main content

Items API

The Items API allows you to manage your product catalog within DuckTape WMS. Think of each item as a duckling in your product family - you need to keep track of all of them!

Get All Items

Search term to filter items by name, SKU, or description
category
string
Filter items by category
sku
string
Filter by exact SKU match
min_price
number
Minimum price filter
max_price
number
Maximum price filter
page
integer
default:"1"
Page number for pagination
limit
integer
default:"20"
Number of items per page
curl -X GET "https://ducktapewms.com/api/items?category=office&limit=10" \
  -H "X-API-Key: YOUR_API_KEY"