Integrations

3D Model Plugins for Blender, Unity, Unreal Engine 5 & Godot 4

Free native plugins for Blender, Unity, Unreal Engine 5, and Godot 4 — plus a desktop app and an instant mobile web app (no App Store download). Search, preview, and import 846 game-ready GLB models without ever leaving your editor.

Blender 4.x Unity 2022.3 LTS+ Unreal 5.3+ Godot 4.2+ Win · macOS · Linux iOS · Android
Blender Add-on

Blender Add-on

Blender 4.x

N-panel in the 3D Viewport. Browse 846 models and import GLB straight into your scene at the 3D cursor.

Download .zip How to install →
Unity Editor Window

Unity Editor Window

Unity 2022.3 LTS+

Window > BitSoul 3D. Saves to Assets/BitSoul3D/ and triggers AssetDatabase refresh automatically.

Download .zip How to install →
Unreal Engine 5

Unreal Engine 5

UE 5.3+

Editor Utility Widget that imports GLB into the Content Browser as a Static Mesh via Asset Import Tasks.

Download .zip How to install →
Mobile Web App — No Download

Mobile Web App — No Download

iPhone · Android · iPad

Browse 846 models and preview them in 3D & AR on your phone. Opens instantly in the browser — no App Store, nothing to install.

Open Web App How to install →

How to install

1

Download a plugin

Pick the integration for your engine of choice from the cards above. All plugins are free and open-source.

2

Generate your API key

Sign in to your account dashboard. Your API key (starts with bsm_) is shown on the page — copy it.

3

Paste into the plugin

Open the plugin's settings panel, paste your key, hit Verify. You're done — the catalog loads instantly.

Per-engine install guides

Click any guide to expand. Every plugin ships as a single .zip — no compilation required.

Blender 4.x — Add-on
  1. Download bitsoul3d-blender.zip (do not unzip).
  2. Open Blender → Edit → Preferences → Add-ons → Install… and select the zip.
  3. Tick the checkbox next to Import-Export: BitSoul 3D to enable it.
  4. Expand the add-on entry, paste your bsm_… API key into the API Key field, and click Verify API Key.
  5. In the 3D Viewport press N to open the sidebar, click the BitSoul 3D tab, hit Refresh Catalog, pick a model, and press Import to Scene.

Tip: Imported objects spawn at the 3D cursor — set the cursor first with Shift+right-click.

Unity 2022.3 LTS+ — Editor Window
  1. Download bitsoul3d-unity.zip and extract it.
  2. Drag the extracted BitSoul3D folder into your project's Assets/ directory.
  3. Install the glTFast package so Unity can import .glb natively:
    • Open Window → Package Manager
    • Click +Add package by name…
    • Enter com.unity.cloud.gltfast and click Add.
  4. Open Window → BitSoul 3D, paste your bsm_… API key, click Verify Key.
  5. Click Refresh Catalog, then Download & Import on any model. Files land in Assets/BitSoul3D/.
Unreal Engine 5.3+ — Editor Plugin
  1. Close the Unreal editor.
  2. Download bitsoul3d-unreal.zip and extract it.
  3. Copy the BitSoul3D folder into <YourProject>/Plugins/ (create the Plugins folder if it doesn't exist).
  4. Reopen the project. If prompted to rebuild, click Yes.
  5. Make sure these dependency plugins are enabled (Edit → Plugins):
    • Python Editor Script Plugin
    • glTF Importer
    • Interchange Framework
  6. Open Window → Developer Tools → Python Console and run:
    import bitsoul3d_import as bs
    bs.set_api_key("bsm_YOUR_KEY")
    bs.list_catalog(query="castle", limit=10)
    bs.import_model("MODEL_ID_FROM_LIST")
  7. Models import as Static Meshes under /Game/BitSoul3D/.
Godot 4.2+ — Editor Dock
  1. Download bitsoul3d-godot.zip and extract it.
  2. Copy the extracted addons/bitsoul3d/ folder into your project's addons/ directory (final path: res://addons/bitsoul3d/).
  3. In Godot, open Project → Project Settings → Plugins and enable BitSoul 3D.
  4. The BitSoul 3D dock appears on the right side of the editor.
  5. Paste your bsm_… API key, click Save key, then Verify.
  6. Click Refresh catalog and use the Import button on any row. Models save to res://BitSoul3D/ and the FileSystem dock refreshes automatically.
💻 Desktop App — Windows · macOS · Linux
  1. Download the zip for your OS:
  2. Extract the zip to a permanent folder of your choice (e.g. Documents/BitSoul 3D). Don't move it after install — the shortcut points back to this folder.
  3. Run the install script inside the extracted folder:
    • Windows: double-click Install BitSoul 3D (Windows).bat
    • macOS: double-click Install BitSoul 3D (macOS).command (if Gatekeeper blocks it, right-click → Open)
    • Linux: in a terminal run bash "Install BitSoul 3D (Linux).sh"
  4. A BitSoul 3D icon appears on your Desktop / in Launchpad / in the Applications menu. Double-click it to launch the app in a chromeless window.
  5. Open the Settings tab, paste your bsm_… API key, click Verify.
  6. Use the Catalog tab to browse, click any model to preview it in the dock, then click Download. Files save to your standard Downloads folder.

Requirements: a Chromium-based browser (Edge, Chrome, or Brave) on Windows / macOS / Linux, or Firefox on Linux. The installer auto-detects whichever you have.

Uninstall: run the matching Uninstall BitSoul 3D script (.bat / .command / .sh) in the same folder, then delete the folder. The uninstaller removes the Desktop shortcut, Start Menu / Launchpad entry, and — if you confirm — the cached browser profile.

📱 Mobile — iOS & Android (no App Store)
  1. On your phone, open /marketplace/app/ in Safari (iPhone / iPad) or Chrome (Android).
  2. iPhone / iPad: tap the Share button (square with up-arrow) → Add to Home ScreenAdd.
  3. Android: tap the browser menu (⋮)Install app (or Add to Home screen) → Install.
  4. Launch BitSoul 3D from your home screen — it opens full-screen with no browser chrome.
  5. Open the Settings tab (gear icon), paste your bsm_… API key, tap Verify.
  6. Use the Catalog tab to browse and the 3D Viewer tab to spin models with touch — pinch & drag to inspect. AR works via Quick Look (iOS) and Scene Viewer (Android).

Uninstall: long-press the BitSoul 3D icon on your home screen — on iPhone / iPad choose Remove App → Delete App; on Android choose Uninstall. To clear just the saved API key without deleting the app, open the app → SettingsReset app data.

Troubleshooting

For developers — the v1 REST API

Every plugin is built on the same public API surface, documented and stable:

# Verify your key + see remaining quota
curl -H "X-API-Key: bsm_YOUR_KEY" https://bitsoulhosting.com/marketplace/api/v1/auth/verify

# List the catalog (no auth needed for browsing)
curl "https://bitsoulhosting.com/marketplace/api/v1/models?q=castle&limit=24"

# Issue a one-shot download link (expires in 5 min, single-use)
curl -X POST -H "X-API-Key: bsm_YOUR_KEY" \
  https://bitsoulhosting.com/marketplace/api/v1/models/MODEL_ID/download

Full reference: API documentation.

API access requires a paid tier

Free accounts can browse the catalog through any plugin, but downloads count against your monthly quota. Upgrade for higher limits and full commercial license.

See plans & pricing
Get a free 3D model when you join — plus new-drop alerts.
Drops + new bundle alerts. No spam. Unsubscribe anytime.