/healthzHealth check
Returns service health for the API container.
Driftstone API
Driftstone is the Git system for agent workspaces. It exposes a small v1 API for creating repositories, branching work, uploading files, downloading live directories, and copying repository state.
Base URL
https://api.driftstone.aiVersion prefix
/v1Repositories
Branches
Uploads
Downloads
Start
Send an organization API key on every versioned API request. Authorization must be passed in the request headers. API keys are expected to start with dk-.
Authorization: Bearer dk-...Start
API responses use a consistent envelope. Successful responses include success: true and a data object. Failed requests include success: false and an error message.
Success
{
"success": true,
"data": {}
}Error
{
"success": false,
"error": "message"
}Start
Health checks do not require bearer authentication and can be used by uptime checks or container probes.
/healthzReturns service health for the API container.
Start
Create a repository, branch for isolated work, write changed files, then download or copy repository directories for the next runtime step.
Create repository
Create branch
Upload files
Download or copy
Contents