S3-Compatible Storage Powered by Telegram

Cloud Storage
Reimagined

Store your files on Telegram's unlimited infrastructure.AWS S3 compatible. Deploy anywhere.

Storage Capacity
20MB
Max File Size
100%
S3 Compatible

Everything You Need

A complete storage solution that integrates seamlessly with your existing workflow.

Telegram-Powered

Leverage Telegram's robust infrastructure for unlimited, reliable file storage.

S3 Compatible

Drop-in replacement for AWS S3. Works with your existing tools and SDKs.

Secure by Design

HMAC-SHA256 authentication, presigned URLs, and granular access controls.

Lightning Fast

Built on Cloudflare Workers for edge-optimized global performance.

Bucket Management

Create unlimited buckets with custom permissions and file size limits.

Global CDN

Content delivered from the edge, ensuring fast downloads worldwide.

Works With Your Stack

Integrate in minutes with any AWS S3 compatible library or SDK.

// config/filesystems.php
's3' => [
    'driver' => 's3',
    'key' => env('AWS_ACCESS_KEY_ID'),
    'secret' => env('AWS_SECRET_ACCESS_KEY'),
    'region' => 'auto',
    'bucket' => env('AWS_BUCKET'),
    'endpoint' => env('AWS_URL'), // https://g2-backend.fikri-afa289.workers.dev/g2
    'use_path_style_endpoint' => true,
],

// Usage
Storage::disk('s3')->put('file.txt', 'Hello G2!');
$content = Storage::disk('s3')->get('file.txt');
LaravelNext.jsPythonGoRubyRust