The Tookeo SDK extends UE5 with platform-level systems for networking, avatars, streaming, and deployment — so you can focus on building, not infrastructure.
Get your first Tookeo application running and published to the browser in under an hour.
Download the SDK installer, which includes the modified UE5 editor and all Tookeo platform plugins pre-configured.
Launch the Tookeo Editor and select a project template — single-player experience, multiplayer environment, or digital twin.
Use standard UE5 workflows — Blueprints, C++, content pipelines — plus Tookeo's platform extensions for networking, avatars, and media.
Run the Tookeo packaging command. The pipeline optimizes your project for cloud rendering and streaming delivery.
Upload your package via CLI or dashboard. Within minutes, your application is live and accessible through any modern browser.
# Install the Tookeo CLI $ npm install -g @tookeo/cli # Authenticate with your account $ tookeo auth login # Create a new project from template $ tookeo create my-digital-twin --template digital-twin # Build and package for cloud delivery $ tookeo build --target cloud --optimize # Deploy to Tookeo Cloud $ tookeo deploy --project my-digital-twin ✓ Build uploaded successfully ✓ Provisioning cloud instance... ✓ Live at https://my-digital-twin.tookeo.app
Everything UE5 already offers — plus the platform-level systems you'd otherwise spend months building yourself.
Built-in client-server networking with session management, state synchronization, and matchmaking. No need to roll your own multiplayer stack.
Pre-built avatar system with customization, animation state machines, and input handling for first-person, third-person, and spectator modes.
Embed live video, web views, PDFs, dashboards, and streaming content directly into your 3D scenes as interactive surfaces.
Adaptive input handling for desktop, mobile, and touch. The SDK automatically maps controls to the user's device and context.
One-command packaging optimized for cloud rendering. The build pipeline handles asset cooking, compression, and streaming configuration.
Extend Tookeo with installable plugins for ArcGIS, analytics, custom data sources, and third-party integrations.
The Tookeo Platform API gives you full control over deployments, sessions, users, and analytics — from your CI/CD pipeline or custom tooling.
Every action you can take in the Tookeo dashboard is also available through the REST API. Automate deployments, manage user access, query session data, and integrate with your existing DevOps workflows.
The API uses standard REST conventions with JSON payloads, OAuth 2.0 authentication, and comprehensive webhook support for event-driven architectures.
import { TookeoClient } from '@tookeo/sdk'; const client = new TookeoClient({ apiKey: process.env.TOOKEO_API_KEY, }); // Deploy a new version const deployment = await client.deployments.create({ project: 'my-digital-twin', build: './dist/package.tpk', config: { region: 'eu-west-1', maxSessions: 100, scaling: 'auto', }, }); console.log(`Live at ${deployment.url}`); // Monitor active sessions const sessions = await client.sessions.list({ deployment: deployment.id, status: 'active', }); console.log(`${sessions.length} active`);
Comprehensive documentation, tutorials, and sample projects to help you build on Tookeo.
Complete reference for the Tookeo SDK — installation, project setup, platform APIs, and deployment workflows.
Browse docs →Step-by-step walkthrough from SDK installation to your first browser-deployed application. Takes about 45 minutes.
Start the guide →Full REST API documentation with endpoint specs, authentication, request/response examples, and webhook events.
View API reference →End-to-end tutorial: import a LiDAR scan, add interactive hotspots, enable multiplayer, and deploy to browser.
Follow tutorial →Downloadable starter projects covering common patterns: single-player experience, multiplayer room, data dashboard overlay.
Download samples →Join the Tookeo developer community on Discord. Ask questions, share projects, get early access to new features.
Join Discord →What you need to develop with the Tookeo SDK and what your end users need to experience your applications.
Download the SDK, follow the getting started guide, and have your first application live in a browser within the hour.