Skip to content

Squarespace - Get Inventory

This module allows querying inventory levels of all products in a Squarespace store. It includes filters to search by product, SKU, or detect low-stock products.

  • API Key: Squarespace API key
ParameterTypeRequiredDescription
credentials_idcredentialYesSquarespace credentials
product_idstringNoFilter by product ID
skustringNoFilter by SKU
low_stock_thresholdnumberNoShow only items with stock below this value
cursorstringNoPagination cursor
{
"success": true,
"inventory": [...],
"count": 50,
"total_count": 150,
"hasNextPage": true,
"nextCursor": "abc123...",
"message": "50 inventory items retrieved"
}
  • variantId: Variant ID
  • sku: Product SKU
  • productId: Parent product ID
  • quantity: Available quantity
  • isFinite: Whether stock is finite
  • isUnlimited: Whether stock is unlimited
{}
{
"product_id": "5f3e..."
}
{
"low_stock_threshold": 10
}
{
"sku": "CAM-001"
}
  • Inventory is managed at the variant level, not the product level
  • Product and SKU filters are applied locally after fetching the data
  • isFinite: true indicates the product has limited stock
  • isUnlimited: true indicates infinite stock (not tracked)
  • SquarespaceUpdateInventory - Adjust inventory levels
  • SquarespaceGetProducts - Get full product data
  • SquarespaceGetOrders - Get orders that affect inventory