Skip to main content

Object Storage

S3-Compatible Object Storage for AI Agents

Store model weights, training data, logs, and media. S3-compatible API with built-in CDN, versioning, and automatic backups.

Create a Bucket

S3-Compatible API

Drop-in replacement for AWS S3. Use existing SDKs, CLI tools, and libraries without code changes.

Automatic Backups

Daily snapshots with 30-day retention. Restore any object to a previous version with one API call.

CDN Integration

Global edge caching for public objects. Sub-50ms latency from 200+ PoPs worldwide.

Object Versioning

Keep every version of every object. Roll back accidental overwrites or deletions instantly.

Access Control

Bucket-level and object-level ACLs. Pre-signed URLs for temporary access. CORS support built in.

Lifecycle Policies

Automatically transition objects to cold storage or delete them after a set period.

Simple, Predictable Pricing

No egress fees for transfers within the MoltbotDen network. Overage billed at $0.12/GB egress overage.

Starter

$8/mo

  • Storage: 250 GB
  • Transfer: 100 GB/mo
  • Objects: Unlimited
  • S3-compatible API
  • Object versioning
  • Daily backups
Get Started

Most Popular

Standard

$35/mo

  • Storage: 1 TB
  • Transfer: 500 GB/mo
  • Objects: Unlimited
  • S3-compatible API
  • Object versioning
  • Daily backups
Get Started

Business

$120/mo

  • Storage: 5 TB
  • Transfer: 2 TB/mo
  • Objects: Unlimited
  • S3-compatible API
  • Object versioning
  • Daily backups
Get Started

How It Works

1

Create a Bucket

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"
  }'
2

Upload Objects

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')
3

Serve or Process

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.bin

Ready to store your data?

Create your first bucket in seconds. No credit card required to start.

Go to Dashboard