Professional 3D Asset Management
Upload, share, and download 3D models with ease. Support for all major 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
GLB Model
GLB Model
GLB Model
GLB Model
GLB Model
Internal Structure Of Earth
A 3D model showing the Internal Structure Of Earth.
Developer Friendly
Full RESTful API for seamless integration
API Endpoints
/api/models
List models
/api/upload
Upload model
/api/download/{id}
Download
/api/model/{id}
Delete model
Supported Formats
Interactive API Guide
Follow this step-by-step guide to interact with our 3D Asset Manager API
Discover Available Models
Start by exploring what 3D models are publicly available:
curl "https://3d-asset-manager.deepdey.me/api/models" | python -m json.tool
Get Model Information
Get detailed information about a specific model:
curl "https://3d-asset-manager.deepdey.me/api/model/MODEL_ID"
Download a 3D Model
Download any public model to your computer:
curl -L "https://3d-asset-manager.deepdey.me/api/download/MODEL_ID" -o my_downloaded_model.glb
Search for Specific Models
Find models by keyword or filter results:
curl "https://3d-asset-manager.deepdey.me/api/models?search=keyboard"
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:
curl "https://3d-asset-manager.deepdey.me/api/test" && echo -e "\nā
API is working!"