Guide

Learn Myndlab. Build by build.

Everything you need to go from "first prompt" to deployed app — written, indexed, searchable.

30
Articles
12
Categories
6
Tutorials
1
API reference
Quick start

Pick your path.

Four short paths. Each is 10–15 minutes, zero to real result.

All categories

Browse by topic.

All articles

Browse everything.

For developers

API access.

Myndlab exposes REST and GraphQL APIs to manage projects, users, and billing programmatically — with official TypeScript and Python SDKs. API access is available on Enterprise plans.

Request API access →
create-project.ts
// Create a new Myndlab project programmatically
import { Myndlab } from "@myndlab/sdk";

const client = new Myndlab({
  apiKey: process.env.MYNDLAB_API_KEY,
  region: "ae-dubai",
});

const project = await client.projects.create({
  name: "Acme Internal Tool",
  stack: { frontend: "next", backend: "fastapi", db: "postgres" },
  prompt: "Build a Kanban board with role-based access.",
});

console.log(`Project created: ${project.url}`);
Need a human?

We're here.

If the guide doesn't answer your question, our team is one email away.