Getting Started
Follow this 3-minute guide to deploy your first SLAAAD-powered occupancy grid.
1
Create your Project
Log in to the SLAAAD Console and create a new project. A project acts as a container for your API keys and terrains.
Pro Tip: Organization
Name your project after your application or staging environment (e.g., "MyWorld-Prod").
2
Generate API Keys
Navigate to Settings → API Keys. You will need two types of keys:
Public Key (pk_...)
Safe for frontend use. Used to fetch terrains and plots.
Secret Key (sk_...)
Keep this hidden. Use only on your backend servers.
3
Deploy to your Frontend
The fastest way to see SLAAAD in action is through our Global CDN SDK.
index.html
<!-- 1. Load the SLAAAD SDK -->
<script src="https://js.slaaad.com/sdk.js"></script>
<!-- 2. Create a container -->
<div id="terrain-grid" style="width: 100%; height: 600px;"></div>
<!-- 3. Initialize -->
<script>
new Slaaad.Terrain({
id: "your-terrain-id",
apiKey: "pk_test_...",
container: "#terrain-grid",
onImageUpload: (file) => uploadToMyServer(file)
});
</script>Next Steps
Last updated: April 2026