Independent guide Β· World Labs' Atlas
Atlas World Model by World Labs: Generate & Reconstruct 3D Worlds from Text, Images and Video
Atlas is World Labs' omni world model for spatial intelligence, announced September 1, 2026: one model that turns prompts, photos and clips into 3D worlds and camera-controlled video at up to 1440p. This site tracks what it does, how to get access, what the API costs, and how it compares to Marble and other world models.
What the Atlas world model does
Four capabilities World Labs highlights for Atlas. Details and sources on the What Is Atlas page.
Camera-controlled video generation
Up to 1440p and up to one minute of video where the camera path is an explicit input, not a prompt guess.
3D reconstruction from a few photos
Rebuild a scene as point clouds and Gaussian splats from as few as two or three photos, up to 100+ views.
360Β° panoramas and worlds
Turn text or a single image into a full panorama and a navigable world you can export.
Real-to-sim for robotics
World Labs captured rooms with a phone video and simulated robots inside the reconstruction.
See Atlas in action
Official World Labs demo footage. Interactive Gaussian-splat samples generated with Marble will appear here as the gallery grows; you can already open your own splats in the free splat viewer.
Official demos
Official Atlas demos (World Labs blog, Sep 1, 2026)
Camera-controlled 1440p video, few-view 3D reconstruction and real-to-sim robotics clips are embedded in the announcement post.
Watch on worldlabs.ai β
Interactive 3D sample β coming soon
This slot will hold a Marble-generated Gaussian splat you can orbit in the browser. Until then, drag any .ply or .spz file into the splat viewer.
Atlas vs Marble at a glance
World Labs ships two world models. Marble 1.1 is available today through the World API; Atlas, announced September 1, 2026, is in early access. Full breakdown on the Atlas vs Marble page.
| Dimension | Atlas | Marble 1.1 |
|---|---|---|
| Announced | Sep 1, 2026 | Nov 12, 2025 (Marble); Apr 2, 2026 (1.1 / 1.1 Plus)source |
| Model type | Omni world model: multimodal autoregressive diffusion transformer | Multimodal 3D world generation modelsource |
| Inputs | Text, 1β100+ images, video, depth / point clouds, camera paths | Text, single image, multi-image, 360Β° panorama, videosource |
| Video output | Up to 1440p, up to 1 minute, pixel-perfect camera control | Fly-through video export of a generated worldsource |
| 3D output | Point clouds and Gaussian splats reconstructed from few views | Navigable Gaussian-splat world; .spz / .ply, mesh, video exportsource |
| Reconstruction from photos | Yes β 2β3 photos give faithful results (World Labs claim) | Multi-image input supportedsource |
Call a World Labs world model from code
The Marble World API is live today. When Atlas opens, the same request shape will route to Atlas through this site's API. Details on the Atlas World Model API page.
// Marble World API β generate a world (illustrative request shape; see docs.worldlabs.ai/api)
const res = await fetch('https://api.worldlabs.ai/marble/v1/worlds:generate', {
method: 'POST',
headers: { Authorization: 'Bearer ' + process.env.WORLDLABS_API_KEY, 'Content-Type': 'application/json' },
body: JSON.stringify({ model: 'marble-1.1', prompt: 'a sunlit greenhouse full of ferns' }),
});
const operation = await res.json(); // poll the returned operation until the world is readyimport os, requests
r = requests.post(
"https://api.worldlabs.ai/marble/v1/worlds:generate", # illustrative; see docs.worldlabs.ai/api
headers={"Authorization": f"Bearer {os.environ['WORLDLABS_API_KEY']}"},
json={"model": "marble-1.1", "prompt": "a sunlit greenhouse full of ferns"},
)
operation = r.json() # poll until the world is ready, then export .spz / .ply# illustrative; see docs.worldlabs.ai/api for the exact schema
curl -X POST https://api.worldlabs.ai/marble/v1/worlds:generate \
-H "Authorization: Bearer $WORLDLABS_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"marble-1.1","prompt":"a sunlit greenhouse full of ferns"}'Atlas World Model use cases
Game development
Blockouts, environments and skyboxes for Unity and Unreal from prompts or reference photos.
Robotics real-to-sim
Digital twins of real rooms as training and evaluation worlds.
Unity
Import Gaussian splats and GLB meshes into Unity scenes.
Guide coming soonUnreal Engine
Bring generated worlds into UE5 with splat and mesh plugins.
Guide coming soonVFX & bullet time
Freeze-frame camera moves from ordinary phone footage.
Guide coming soonArchitecture visualization
Walkable concept spaces from sketches and mood boards.
Guide coming soonLatest updates
Changelog β- Atlas World Model Benchmarks Explained: What 75β94% MeansBlog Sep 3, 2026
- How to Get Atlas World Model Early Access (2026 Guide)Blog Sep 3, 2026
- Marble World API Quickstart in TypeScript (World Labs API)Blog Sep 3, 2026
Atlas World Model FAQ
What is the Atlas world model?
Atlas is the omni world model announced by World Labs on September 1, 2026. It is a multimodal autoregressive diffusion transformer that generates camera-controlled video up to 1440p and reconstructs 3D scenes as point clouds and Gaussian splats from a few photos.
Is Atlas the same as Marble?
No. Marble is World Labs' shipping product and API for generating 3D worlds; Atlas is the newer model. This site compares them in detail on the Atlas vs Marble page.
Can I use Atlas World Model today?
As of September 3, 2026 Atlas is in early access for select partners through a request form; no price or general-availability date has been disclosed. Join the waitlist here to be notified when access widens, and use the Marble World API meanwhile.
Is there an Atlas API?
Not publicly yet. The Marble World API is live, and this site is built so that the same request format will route to Atlas when World Labs opens it up.
What does the World Labs API cost?
The World API sells credits at $1 for 1,250 credits (minimum $5). A Marble 1.1 world costs 1,500 credits, about $1.20, and PLY splat export is free, as of September 3, 2026. Details on the pricing page.
What formats can I export?
Marble worlds can be exported as Gaussian splats (.ply/.spz) and meshes, which you can preview free in the splat viewer on this site and import into Unity, Unreal or Blender.
Is this the official World Labs site?
No. atlasworldmodel.com is an independent resource and is not affiliated with World Labs. Atlas, Marble and World Labs are trademarks of their respective owners.
How is Atlas different from Genie 3 or Sora?
Genie 3 focuses on interactive playable environments and Sora on video generation, while Atlas targets 3D world reconstruction and generation with explicit camera control. See the comparison hub for side-by-side tables.
Join the Atlas World Model early-access waitlist
Be first to know when Atlas opens beyond partners, and when image-to-3D and text-to-3D world generation goes live on this site.