Showcase & Templates
Production-ready templates and kickstarter projects to build and ship faster with Skytells.
Jump-start your next AI project with our curated templates and showcase projects. Each repo is production-ready, fully documented, and designed to help you build and ship faster.
All templates are published on GitHub at github.com/skytells-ai. Clone, customize, and deploy — no boilerplate from scratch.
Before You Start
New to Skytells? Get set up in minutes:
Create an Account
Sign up for free — no credit card required. Get instant access to the platform.
Get Your API Key
Create and manage API keys. You'll need one to run any template.
Featured Projects
Image Generator SaaS
A full-stack Next.js application that demonstrates how to integrate the Skytells SDK for AI image generation. Perfect for building image-generation products, demos, or learning the Skytells API.
Features
- Modern UI — Animations, loading states, and responsive design
- Skytells Integration — TypeScript SDK with the
truefusion-promodel - Dark & Light Mode — Built-in theme support
- Mobile-Friendly — Works on all devices
- Example Prompts — Built-in inspiration for users
Quick Start
-
Clone the repository
git clone https://github.com/skytells-ai/image-generator-saas-nextjs.git cd image-generator-saas-nextjs -
Install dependencies
npm install -
Configure your API key
Create
.env.localand add your Skytells API key from skytells.ai/dashboard/api-keys:SKYTELLS_API_KEY=your_api_key_here -
Run the app
npm run devOpen http://localhost:3000 to see it in action.
How It Works
The app uses a Next.js API route to proxy requests to the Skytells API, keeping your API key secure on the server. The frontend sends prompts to /api/generate, which calls the Skytells SDK:
const skytells = createClient(process.env.SKYTELLS_API_KEY || '');
const prediction = await skytells.predict({
model: 'truefusion-pro',
input: { prompt: prompt }
});Tech Stack
| Layer | Technology |
|---|---|
| Framework | Next.js (App Router) |
| Language | TypeScript |
| AI | Skytells TypeScript SDK |
| Styling | Tailwind CSS |
View on GitHub
Fork, star, or contribute to the Image Generator template.
Learn More
Model Catalog
Swap models — try flux-pro, truefusion-ultra, or other image models.
Predictions API
Deep dive into run(), progress tracking, webhooks, and batch dispatch.
Error Handling
Handle errors robustly — use error_id for stable programmatic branching.
Browse All Templates
Next Steps
TypeScript SDK
Integrate Skytells into your Next.js or Node.js app. Framework examples included.
Python SDK
Build with Python — zero dependencies, works with any Python 3.8+ project.
Orchestrator
No-code workflows — webhook → AI → Slack. Build automations without writing code.
Model Catalog
Browse all models — image, video, audio, text. Pricing and input schemas.
Error Handling
Handle API errors robustly. Use error_id for stable branching in code.
Dashboard
Create and manage API keys in the Skytells dashboard.
How is this guide?