Log into your tenant dashboard using your secret access code. You can locate your access code and integration tokens inside the **Settings** panel on your dashboard.
Drag and drop assets directly onto the dashboard to upload. Media files (images, videos) can be previewed inline, and all assets are downloadable or deletable instantly.
Click **Share** to copy the public delivery CDN link. It serves your assets directly via the secure delivery network (dl.oqens.me).
Integrate OQENS storage into your apps, websites, or scripts. Authenticate programmatic requests by passing your unique API Key in the X-API-Key header.
Deploying an AI Coding Agent (like Antigravity, Claude Engineer, or Cursor)? Copy this optimized system prompt to feed to your agent so it knows exactly how to read, upload, and delete files from your OQENS bucket.
Loading prompt...
Retrieve list of all active files and sizes in your storage bucket.
curl -H "X-API-Key: YOUR_SECRET_API_KEY" https://echo.oqens.me/api/bucket/list
Upload a new file using multipart/form-data payload.
curl -X POST -H "X-API-Key: YOUR_SECRET_API_KEY" -F "file=@/local/path/file.png" https://echo.oqens.me/api/bucket/upload
Retrieve file stream. Pass parameter attachment=true to force download.
curl -H "X-API-Key: YOUR_SECRET_API_KEY" -o file.png "https://echo.oqens.me/api/bucket/download?key=file.png&attachment=true"
Delete file from bucket by passing its key as JSON body.
curl -X DELETE -H "X-API-Key: YOUR_SECRET_API_KEY" -H "Content-Type: application/json" -d '{"key":"file.png"}' https://echo.oqens.me/api/bucket/delete
Access publicly shared links on dl.oqens.me without headers. Append ?preview=true for browser rendering.
https://dl.oqens.me/YOUR_CLOUD_ID/file.png