Everything You Need to Master Synaplux

Guides, tutorials, API references, and examples — all in one place.

🔍
Getting started API authentication Prompt scoring Python Lab setup Billing & plans

Browse by Category

Quick Start Guide

1

Create Your Account

Sign up at synaplux.com/login with your email or Google SSO. Your free Starter plan is activated instantly — no credit card required.

2

Pick a Template

Browse 150+ ready-made prompt templates across Marketing, Sales, HR, and Operations. Fork any template to your workspace with one click.

3

Generate & Score

Run the prompt through the AI engine. Review your Clarity, Specificity, Context, and Output scores. Optimize with one click.

Example: Calling the Synaplux API
# Install the SDK pip install synaplux-sdk # Initialize client from synaplux import Synaplux client = Synaplux(api_key="sk-syn-your-key") # Generate a prompt response = client.prompts.generate( template="marketing-email", variables={ "product": "AI workflow platform", "audience": "B2B SaaS founders", "tone": "professional" } ) print(response.output) # Generated prompt text print(response.score) # {"clarity":88,"specificity":91,...}

Popular Articles

Video Tutorials

🎬

Synaplux Platform Overview

A complete tour of every feature — from dashboard to Python Lab.

▶ 12:34
🧠

Mastering Prompt Optimization

Watch a real prompt go from score 42 to 96 in under 3 minutes.

▶ 8:17
🐍

Python Lab: Build an ML Pipeline

Train a classifier and visualize results — all in the browser.

▶ 15:42

API Reference

POST

Generate Prompt

Generate an AI prompt from a template with variable substitution and automatic scoring.

/v1/prompts/generate
GET

List Templates

Retrieve all prompt templates available in your workspace, with category and metadata filters.

/v1/templates
POST

Run Python Script

Execute a Python script in the secure sandbox and retrieve stdout, stderr, and file outputs.

/v1/python/run
GET

Usage Stats

Get current billing period usage for prompts, Python runs, and team seats for your account.

/v1/usage
POST

Score a Prompt

Submit any prompt text and receive a structured score across Clarity, Specificity, Context, and Output dimensions.

/v1/prompts/score
DEL

Delete Template

Permanently delete a saved template from your workspace. This action cannot be undone.

/v1/templates/{id}

Can't Find What You Need?

Our support team responds in under 2 hours on business days. The community forum has answers to 4,000+ questions.