Professional 3D Asset Management

Upload, share, and download 3D models with ease. Support for all major formats.

6
3D Models
4
Active Users
8
Supported Formats

Powerful Features

Easy Upload

Drag and drop your 3D models with instant processing

Fast Download

Download models instantly via web or API

RESTful API

Full API access for developers and integrations

Secure Storage

Your models are safely stored with privacy controls

Recent Models

šŸŽØ

GLB Model

Solar System

Solar System

by Deep_Admin 5 downloads
šŸŽØ

GLB Model

A medieval Treasury

A medieval Treasury

by Admin_Deep 5 downloads
šŸŽØ

GLB Model

Thomas the Train

Thomas the Train

by Admin_Deep 4 downloads
šŸŽØ

GLB Model

A Coffee Stand

A Coffee Stand

by Admin_Deep 4 downloads
šŸŽØ

GLB Model

A Rubiks Cube

A Rubiks Cube

by Admin_Deep 4 downloads
šŸŽØ

GLB Model

Internal Structure Of Earth

A 3D model showing the Internal Structure Of Earth.

by Deep_Admin 5 downloads

Developer Friendly

Full RESTful API for seamless integration

API Endpoints

GET /api/models List models
POST /api/upload Upload model
GET /api/download/{id} Download
DEL /api/model/{id} Delete model

Supported Formats

OBJ
Wavefront
FBX
Autodesk
GLTF
Khronos
GLB
Binary GLTF

Interactive API Guide

Follow this step-by-step guide to interact with our 3D Asset Manager API

1

Discover Available Models

Start by exploring what 3D models are publicly available:

šŸ’” Try this command:
curl "https://3d-asset-manager.deepdey.me/api/models" | python -m json.tool
What you'll get: List of all public 3D models with their IDs, names, formats, and download counts
2

Get Model Information

Get detailed information about a specific model:

šŸ’” Replace MODEL_ID with an actual ID from step 1:
curl "https://3d-asset-manager.deepdey.me/api/model/MODEL_ID"
What you'll get: Complete model details, owner info, file size, upload date, and description
3

Download a 3D Model

Download any public model to your computer:

šŸ’” This saves the file locally:
curl -L "https://3d-asset-manager.deepdey.me/api/download/MODEL_ID" -o my_downloaded_model.glb
Result: The 3D model file will be saved to your current directory
4

Search for Specific Models

Find models by keyword or filter results:

šŸ” Search by keyword:
curl "https://3d-asset-manager.deepdey.me/api/models?search=keyboard"
šŸ“„ Get specific page:
curl "https://3d-asset-manager.deepdey.me/api/models?page=2&per_page=5"

For Account Holders: Upload & Manage

To upload models or access your personal collection, you need to authenticate:

šŸ” Step 1: Login
curl -X POST "https://3d-asset-manager.deepdey.me/auth/login" \
  -H "Content-Type: application/json" \
  -d '{"email": "your-email@example.com", "password": "your-password"}' \
  -c cookies.txt
šŸ“¤ Step 2: Upload Model
curl -X POST "https://3d-asset-manager.deepdey.me/api/upload" \
  -b cookies.txt \
  -F "file=@your-model.glb" \
  -F "name=My Amazing Model" \
  -F "description=A cool 3D model" \
  -F "is_public=true"

Quick API Test

Want to test immediately? Try this simple command:

šŸš€ One-liner to see our API in action:
curl "https://3d-asset-manager.deepdey.me/api/test" && echo -e "\nāœ… API is working!"
šŸ’” Pro Tip: All public endpoints work without authentication. Perfect for exploring!