Complete reference for XCloudEx API v3.0. Build scalable applications with our Firebase-like backend and advanced storage system.
Choose the documentation you need
Complete API reference for main endpoints
/api/auth/register/api/projects/api/projects/{id}/collections/{collectionId}/documentsAdvanced file management with R2 storage
/api/storage/projects/{projectId}/upload/api/storage/projects/{projectId}/shares/api/storage/projects/{projectId}/quotaReal-time event notifications
/api/webhooks/api/webhooksGet up and running in 5 minutes
curl -X POST 'https://api.ulibtech.org/api/auth/register' \
-H 'Content-Type: application/json' \
-d '{
"email": "your@email.com",
"password": "yourpassword",
"displayName": "Your Name"
}'Learn about authentication methods
// With Bearer Token Authorization: Bearer <your-jwt-token> // With API Key X-API-Key: <your-api-key>
Start using the storage system
// Upload a file
const formData = new FormData();
formData.append('file', file);
formData.append('metadata', JSON.stringify({
category: 'documents'
}));
fetch('https://api.ulibtech.org/api/storage/projects/{projectId}/upload', {
method: 'POST',
headers: {
'Authorization': 'Bearer <token>'
},
body: formData
})Official Node.js and browser SDK
@xcloudex/sdkPython SDK with async support
xcloudex-pythonReact hooks and components
@xcloudex/reacthttps://api.ulibtech.org