Skip to content
Atlas World Model
Menu

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.

Atlas:Early access (select partners)Marble API:Live (Marble 1.1)Status log

What the Atlas world model does

Four capabilities World Labs highlights for Atlas. Details and sources on the What Is Atlas page.

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.

Atlas vs Marble 1.1 β€” as of 2026-09-03
DimensionAtlasMarble 1.1
AnnouncedSep 1, 2026Nov 12, 2025 (Marble); Apr 2, 2026 (1.1 / 1.1 Plus)source
Model typeOmni world model: multimodal autoregressive diffusion transformerMultimodal 3D world generation modelsource
InputsText, 1–100+ images, video, depth / point clouds, camera pathsText, single image, multi-image, 360Β° panorama, videosource
Video outputUp to 1440p, up to 1 minute, pixel-perfect camera controlFly-through video export of a generated worldsource
3D outputPoint clouds and Gaussian splats reconstructed from few viewsNavigable Gaussian-splat world; .spz / .ply, mesh, video exportsource
Reconstruction from photosYes β€” 2–3 photos give faithful results (World Labs claim)Multi-image input supportedsource
Read the full Atlas vs Marble comparison β†’

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 ready
import 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

Latest updates

Changelog β†’

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.

No spam. One email when Atlas access or the API opens on this site, plus occasional major updates.