WebSpider Developer Portal
Build the Future of AI Games & 3D Web Apps
Access official SDKs, WebSpider 3D plugins, Supabase RBAC integrations, AI assistant APIs, and publish your games directly to millions of players on WebSpider Studios.
WebSpider 3D SDK
Native C++ & WebGL bindings to build real-time spatial rendering engines, custom shaders, and procedural mesh generators for WebSpider 3D.
Supabase Auth & RBAC
Role-based user management with authority tiers (`user`, `developer`, `portal_admin`), row-level security, and multi-provider OAuth (Google, GitHub, Discord, Steam).
WebSpider AI IDE Plugins
Extend WebSpider AI IDE with custom syntax extensions, code assistant models, and automated build scripts using TypeScript and C++.
Quick Start: WebSpider Studio SDK
npm / pnpmimport { WebSpiderSDK } from '@webspider/sdk';
const sdk = new WebSpiderSDK({
projectId: 'rmjutzuoujhmjnjhmpdu', // Supabase Project ID
apiKey: process.env.WEBSPIDER_API_KEY
});
// Initialize 3D Engine & Auth Session
const user = await sdk.auth.getUser();
console.log('LoggedIn Authority Level:', user.role);