Download any GLB below instantly or hotlink it straight from the CDN. No signup, no attribution, commercial use allowed. Each file is low-poly, flat-shaded and only a few kilobytes, so it loads fast on the web.
Every free model is hotlinkable. This is the real snippet for Floor Lamp:
// GLB: works in three.js, Unity, Godot, Blender
new GLTFLoader().load(
'https://threejs-3d-assets.com/cdn/floor-lamp-f0ba3f.glb',
(gltf) => scene.add(gltf.scene)
);
// or the drop-in ES module (three.js, zero loaders):
import { createAsset } from 'https://threejs-3d-assets.com/cdn/floor-lamp-f0ba3f.mjs';
scene.add(createAsset());
GLB is the binary form of glTF, the standard 3D format for the web: geometry, materials and animations packed into a single file. It loads natively in three.js and Babylon.js and imports into Unity, Godot, Unreal and Blender.
Yes. Free models are served from a CDN with open CORS headers, so you can load them directly from your site without hosting anything.
Yes: games, apps, client work and commercial products are all covered, no attribution required. You only may not resell or redistribute the files themselves as assets.
The models use flat-shaded vertex colors instead of textures, so a typical GLB here weighs a few kilobytes instead of megabytes.