Skip to content

Squarespace - Get Products

This module allows querying products from a Squarespace store. It can get a specific product by ID or list products with type and modification date filters.

  • API Key: Squarespace API key (Settings > Advanced > Developer API)
ParameterTypeRequiredDescription
credentials_idcredentialYesSquarespace credentials
product_idstringNoSpecific product ID
typeselectNoType: PHYSICAL, DIGITAL, SERVICE, GIFT_CARD
modifiedAfterstringNoProducts modified after (ISO 8601)
modifiedBeforestringNoProducts modified before (ISO 8601)
cursorstringNoPagination cursor
{
"success": true,
"products": [...],
"count": 25,
"hasNextPage": true,
"nextCursor": "abc123...",
"message": "25 products retrieved"
}
  • id: Product ID
  • name: Product name
  • description: Description
  • url: Product URL
  • urlSlug: URL slug
  • type: Product type (PHYSICAL, DIGITAL, SERVICE, GIFT_CARD)
  • isVisible: Visibility
  • variants: Variants array
  • images: Images array
  • createdOn: Creation date
  • modifiedOn: Modification date
{
"product_id": "5f3e..."
}
{
"type": "PHYSICAL"
}
{
"modifiedAfter": "2024-01-01T00:00:00Z"
}
  • The Squarespace API uses cursor-based pagination
  • Products include all variants in a single object
  • The GIFT_CARD type is for digital gift cards
  • Products cannot be created or modified via API (read-only)
  • SquarespaceGetInventory - Get product inventory levels
  • SquarespaceUpdateInventory - Adjust variant inventory
  • SquarespaceGetOrders - Get orders that include products