Get Dashboard Stats
Returns project statistics for the current organization.
Response
{
"totalProjects": 12,
"activeContainers": 3,
"totalDeployments": 47,
"storageUsed": "2.4 GB"
}
Get Project Config
GET
/projects/config/{projectId}
Returns the configuration for a specific project.
Path Parameters
| Parameter | Type | Description |
|---|
projectId | string | The project’s UUID |
Response
{
"id": "project_abc123",
"name": "My Website",
"runtime": "nextjs",
"status": "deployed",
"domain": "my-website.hiveku.com",
"customDomain": "www.example.com",
"createdAt": "2025-01-15T10:30:00Z"
}
Update Project Config
PATCH
/projects/config/{projectId}
Updates a project’s configuration.
Path Parameters
| Parameter | Type | Description |
|---|
projectId | string | The project’s UUID |
Request Body
{
"name": "Updated Project Name",
"customDomain": "www.newdomain.com"
}