DocsObject StorageS3-Compatible API
Object Storage

S3-Compatible API

Use any S3 client with wasaaCloud Object Storage.

Endpoint

All S3 API requests go to:

https://storage.wasaacloud.com

For virtual-hosted-style requests:

https://BUCKET.storage.wasaacloud.com

AWS CLI configuration

bash
# Configure AWS CLI to use wasaaCloud
aws configure set aws_access_key_id YOUR_KEY
aws configure set aws_secret_access_key YOUR_SECRET

# List buckets
aws s3 ls --endpoint-url https://storage.wasaacloud.com

# Upload a file
aws s3 cp myfile.txt s3://my-bucket/ \
  --endpoint-url https://storage.wasaacloud.com

# Sync a directory
aws s3 sync ./dist s3://my-bucket/website \
  --endpoint-url https://storage.wasaacloud.com

rclone configuration

bash
# Add to ~/.config/rclone/rclone.conf
[wasaa]
type = s3
provider = Other
endpoint = https://storage.wasaacloud.com
access_key_id = YOUR_KEY
secret_access_key = YOUR_SECRET

# List buckets
rclone lsd wasaa:

# Sync files
rclone sync ./local-folder wasaa:my-bucket
← Previous
Create a Bucket

Was this article helpful?

Need more help? Open a support ticket

On this page

Endpoint
AWS CLI configuration
rclone configuration
Get support