Every Fairu account includes RAKU, our S3-compatible storage gateway. Use your favorite tools like AWS CLI, Transmit, or Cyberduck to manage your assets directly — with all the power of Fairu's transformation engine.
S3 Compatibility, Fairu Power

RAKU works with any S3-compatible application out of the box.
Use familiar AWS commands to manage your files
Premium macOS file transfer with full S3 support
Free, open-source cloud storage browser
Windows client for S3-compatible storage
Native S3 filesystem driver support
Works with any tool supporting S3 API
Connect your tools to Fairu in minutes with our S3-compatible endpoint.
Generate your Access Key and Secret Key in the Fairu dashboard under Settings → RAKU.
Add your credentials to AWS CLI, Transmit, Cyberduck, or any S3-compatible tool.
aws configure --profile fairu
# Access Key ID: <your-key>
# Secret Access Key: <your-secret>
# Region: eu-central-1List, upload, download, and sync your files using familiar S3 commands.
Use standard S3 commands and SDKs you already know. No proprietary APIs to learn.
# List all buckets
aws s3 ls --profile fairu --endpoint-url https://raku.fairu.app
# List files in a bucket
aws s3 ls s3://your-tenant-id --profile fairu --endpoint-url https://raku.fairu.app
# Upload a file
aws s3 cp image.jpg s3://your-tenant-id/folder/ --profile fairu --endpoint-url https://raku.fairu.app
# Download a file
aws s3 cp s3://your-tenant-id/folder/image.jpg ./ --profile fairu --endpoint-url https://raku.fairu.app
# Sync a directory
aws s3 sync ./local s3://your-tenant-id/remote --profile fairu --endpoint-url https://raku.fairu.app// config/filesystems.php
'disks' => [
'fairu' => [
'driver' => 's3',
'key' => env('FAIRU_RAKU_KEY'),
'secret' => env('FAIRU_RAKU_SECRET'),
'region' => 'eu-central-1',
'bucket' => env('FAIRU_TENANT_ID'),
'endpoint' => 'https://raku.fairu.app',
'use_path_style_endpoint' => true,
],
],
// Usage in your application
Storage::disk('fairu')->put('folder/file.jpg', $contents);
Storage::disk('fairu')->get('folder/file.jpg');
Storage::disk('fairu')->url('folder/file.jpg');Create your RAKU credentials in the dashboard and start using S3-compatible tools in minutes.