stars Secure Storage Engine

Your Files, Secured.
Your API, Accelerated.

The premium media storage engine with granular developer permissions, text/image watermarks, and built-in API execution logging.

console ~ dashboard_telemetry
image
Images Secure JPG/PNG
videocam
Videos MP4 Stream
description
Documents PDF / XLSX
[ImageBucket Auth] API Key ib_e71b2d... validated
GET /v1/api/storage HTTP 200 OK (Telemetry Logged)
Incrementing telemetry_calls... Success (Total Calls: +1)

Built for Modern Developers

category

Multi-Format Vault

Clean storage structure with categories for images, videos, audio files, and documents. Upload and filter seamlessly.

vpn_key

Granular API Keys

Limit keys by HTTP method (GET, POST, or BOTH) and restricted file types to ensure the highest security standards.

analytics

Telemetry Tracker

Every single programmatic call is tracked. View real-time counters and last used timestamps inside your dashboard.

water_drop

Automated Watermarking

Enable text or image watermarks instantly on all image uploads to protect your ownership and restrict hotlinking.

Zero-Config Developer Endpoints

ImageBucket handles media storage, optimization, and security transparently. Use our secure developer API to upload, search, and list assets programmatically with custom tokens.

Bearer Authentication JSON Format Automatic Telemetry HTTPS Protected
# Fetch storage metrics and API call logs curl -X GET "https://cdn.codeaxe.co.in/v1/api/storage" \ -H "Authorization: Bearer ib_YOUR_API_KEY" # Upload an image to the vault curl -X POST "https://cdn.codeaxe.co.in/v1/api/images" \ -H "Authorization: Bearer ib_YOUR_API_KEY" \ -F "file=@/path/to/screenshot.png"
// Fetch files list from ImageBucket const response = await fetch('https://cdn.codeaxe.co.in/v1/api/images', { method: 'GET', headers: { 'Authorization': 'Bearer ib_YOUR_API_KEY', 'Accept': 'application/json' } }); const data = await response.json(); console.log('Telemetry logged. Response data:', data);
import requests url = "https://cdn.codeaxe.co.in/v1/api/images" headers = { "Authorization": "Bearer ib_YOUR_API_KEY" } # Programmatic upload files = {"file": open("image.jpg", "rb")} response = requests.post(url, headers=headers, files=files) print("API call registered. Status code:", response.status_code) print(response.json())