Our flexible grid system adapts to any coordinate system, whether it's CSS Grid, Canvas, WebGL, or physical LED matrices.
Turn the empty space on your high-traffic website into a marketplace. Instead of a single banner, offer a grid of 10x10px plots that users can buy to place their logo or message.
Perfect for MMOs and Strategy games. Map your game world coordinates to SLAAAD terrains. Allow players to "conquer" land using real-world currency or in-game tokens, managed entirely via API.
Monetize kiosks, digital billboards, or even massive stadium screens. Users scan a QR code on the physical screen to visit the mobile web acquisition page, buy a plot, and upload their image instantly to the physical screen.
We handle the complex logic of coordinate mapping, payment holding (Escrow), and state management. You just visualize the terrain.
Get notified immediately when a plot is acquired or expires.
Accept cards, crypto, or custom tokens seamlessly.
Built-in anti-abuse protections and cooldown periods.
// Create a terrain
const terrain = await slaaad.terrains.create({
name: "Main Terrain",
rows: 10,
cols: 10
});
// Start an acquisition
const acquisition = await slaaad.acquisitions.create({
terrainId: terrain.id,
plotIds: ["1", "2", "3"],
durationMinutes: 60
});
// Handle webhook
app.post('/webhook', (req, res) => {
if (req.body.event === 'plot.acquired') {
updateUI(req.body.plotId);
}
});