Synthesise AI
  • Getting Started
    • πŸ“˜Introduction
    • 🀝Supporters
    • πŸ”ŽKey Features
    • πŸ’³Products
  • Platform Infrastructure
    • πŸ—οΈArchitecture
    • πŸ—ΊοΈRoadmap
  • Core Modules
    • 🧠AI Agents
    • πŸ€–Chatbots
    • βš™οΈAutomations
  • $SYNAI INFORMATION
    • πŸͺ™Tokenomics
    • 🎁Holder Benefits
Powered by GitBook
On this page
  1. Getting Started

Products

Synthesise AI is available in two primary subscription tiers. Each package is designed to match different levels of creative intensity, team size, and automation needs. The billing cycle is annual, with a usage-based credit system baked into runtime.


1. Starter Tier – $1,499/year

Who It's For

Designed for solopreneurs, early-stage builders, or coaches launching their first digital products.

What's Included

  • 3 Creation Credits per Year Each credit unlocks one complete build flow: from idea β†’ UVZ β†’ validation β†’ automation β†’ export

  • Personalized Dashboard Real-time usage, success score tracking, and flow history

  • Product Charter Generation One-click transformation from validated idea to modular blueprint

  • Premium Support Email-based support with 48hr SLA

Enforcement Logic in Rust

struct Subscription {
    tier: String,
    credits_remaining: u8,
}

impl Subscription {
    fn consume_credit(&mut self) -> Result<(), &'static str> {
        if self.credits_remaining > 0 {
            self.credits_remaining -= 1;
            Ok(())
        } else {
            Err("No credits remaining.")
        }
    }
}

2. Pro Tier – $2,999/year

Who It's For

Ideal for scale-focused businesses, agencies, or educators building multiple monetizable flows each month.

What's Included

  • Unlimited Build Credits Create as many product flows as you like across multiple brands, niches, or formats.

  • Priority Support 24/7 access to Slack-based concierge and technical support

  • Advanced Guidance Flows Access exclusive agents and workflows (e.g. High Ticket Course Builder, Web3 Onboarding Agent)

  • Multi-Agent Flow Composition Combine AI agents into collaborative swarms that co-develop your product

  • Early Feature Access Beta-test upcoming tools, automation nodes, and LLM connectors

Runtime Feature Access Logic

fn has_pro_features(tier: &str) -> bool {
    match tier {
        "Pro" => true,
        _ => false,
    }
}

3. Credit System Explained

Credits are the atomic unit of product development access on Synthesise AI. Each credit unlocks one end-to-end product flow:

[ Ideation ] β†’ [ Validation ] β†’ [ Charter ] β†’ [ Automation ] β†’ [ Monetize ]

Even Pro users rely on creditsβ€”they’re just unmetered. This gives our runtime consistent entry/exit points for feature usage, cost estimation, and long-term metering.


4. In-Platform Purchases

While credits cover product generation, you can optionally buy:

  • Additional chatbot deployments

  • Premium templates

  • Revenue projection packs

  • Custom domain dashboards

All add-ons are powered by Stripe and tracked via a tokenized ledger internally.

PreviousKey FeaturesNextArchitecture

Last updated 13 days ago

πŸ’³