Creatimatic LogoCreatimatic
Creatimatic Docs
Concepts

Products

Products

URL: /dashboard/products

Products are the core entity in Creatimatic. A product represents an item in your internal catalog, independent of any ecommerce platform.

Product Relationships

graph TD
    subgraph "Your Creatimatic Catalog"
        IMG[🎨 Image] --> PROD[📦 Product]
        TMPL[📝 Template] --> PROD
        STYLE[🎭 Art Style] --> IMG
    end
    
    subgraph "Ecommerce Platforms"
        PROD --> L1[🛒 Etsy Listing]
        PROD --> L2[🛒 Shopify Listing]
        PROD --> L3[🛒 Amazon Listing]
    end
    
    subgraph "Fulfillment"
        L1 --> PF[📦 Printful Order]
        L2 --> PF
        L3 --> PF
    end

What is a Product?

A product contains:

  • Image - The artwork or design
  • Mockups - Visual representations on physical items (t-shirts, mugs, etc.)
  • Metadata - Title, description, tags, pricing
  • Associated data - Links to templates, styles, and other resources

Products vs Listings

ConceptLocationPurpose
ProductCreatimatic catalogInternal representation of your item
ListingEtsy, Shopify, etc.Published product on an ecommerce platform
flowchart LR
    A[1 Product] --> B[Etsy Listing]
    A --> C[Shopify Listing]
    A --> D[Amazon Listing]
    
    style A fill:#4f46e5,color:#fff
    style B fill:#f97316,color:#fff
    style C fill:#22c55e,color:#fff
    style D fill:#eab308,color:#000

Products are your "source of truth" - you can create multiple listings from a single product across different platforms.

Creating Products

Products can be created:

  1. Manually through the dashboard
  2. Automatically when images are approved
  3. By combining an image with a template
sequenceDiagram
    participant U as User
    participant I as Imagine
    participant R as Review
    participant P as Products
    
    U->>I: Submit Design
    I->>R: Image Ready
    U->>R: Approve Image
    R->>P: Create Product
    P-->>U: Product Created!