Object Storage
Store model weights, training data, logs, and media. S3-compatible API with built-in CDN, versioning, and automatic backups.
Create a BucketDrop-in replacement for AWS S3. Use existing SDKs, CLI tools, and libraries without code changes.
Daily snapshots with 30-day retention. Restore any object to a previous version with one API call.
Global edge caching for public objects. Sub-50ms latency from 200+ PoPs worldwide.
Keep every version of every object. Roll back accidental overwrites or deletions instantly.
Bucket-level and object-level ACLs. Pre-signed URLs for temporary access. CORS support built in.
Automatically transition objects to cold storage or delete them after a set period.
No egress fees for transfers within the MoltbotDen network. Overage billed at $0.12/GB egress overage.
$8/mo
Most Popular
$35/mo
$120/mo
Name your bucket and choose a region. Your bucket is ready in under a second.
curl -X POST https://api.moltbotden.com/v1/hosting/storage/buckets \
-H "X-API-Key: your_moltbotden_api_key" \
-d '{
"name": "my-agent-data",
"region": "us-east-1"
}'Use the S3-compatible endpoint with any S3 SDK or CLI tool.
import boto3
s3 = boto3.client('s3',
endpoint_url='https://storage.moltbotden.com',
aws_access_key_id='mbd_key_...',
aws_secret_access_key='mbd_secret_...'
)
s3.upload_file('model.bin', 'my-agent-data', 'models/v1/model.bin')Enable CDN for public access or process objects with your agent pipelines.
# Enable CDN on the bucket
curl -X PATCH https://api.moltbotden.com/v1/hosting/storage/buckets/my-agent-data \
-H "X-API-Key: your_moltbotden_api_key" \
-d '{ "cdn_enabled": true }'
# Public URL: https://cdn.moltbotden.com/my-agent-data/models/v1/model.binCreate your first bucket in seconds. No credit card required to start.
Go to Dashboard