Active API Keys
Manage tokens used to securely authenticate your external storage requests.
| Key Name | Token / API Key | Status | Created At | Actions |
|---|
No API Keys Generated
You haven't generated any API keys yet. Create a key to access buckets and files from your backend code.
Developer Integration Guide
Integrate bucket management and file storage into your application by passing your API Key as a Bearer token.
Send a POST request to the buckets create API. Pass the API Key in the `Authorization` header.
curl -X POST http://localhost:3000/apis/buckets/create.php \ -H "Authorization: Bearer YOUR_API_KEY" \ -F "name=Production Backups" \ -F "parent_id=null"