API referenceAgents and workflowsWorkspaces
List a workspace's chats newest-first (kind run|team + ref_id to open the run/team surface). Cursor: before=<seq>.
Requires the workspaces:read permission.
AuthorizationBearer <token>
An access token from this zone's POST /oauth/token, or a session token from POST /api/v1/auth/login. Send it as Authorization: Bearer <token>.
In: header
Path Parameters
id*string
Query Parameters
before?string
limit?integer
Response Body
application/json
application/json
application/json
application/json
application/json
application/json
curl -X GET "https://example.com/api/v1/workspaces/string/chats"{ "items": [ { "created_at": "2019-08-24T14:15:22Z", "kind": "string", "ref_id": "58ed4a6c-926f-4b2f-b688-ecd86db2ed34", "seq": "string", "title": "string" } ], "total": 0}Delete a workspace: removes the Coolify app + deploy key + webhook. The GitHub repository itself is NEVER deleted. DELETE
Previous Page
Start a repo-bound chat under the workspace: mode=agent spawns a single-agent run, mode=team an agent team. The repo is cloned into the agent's workspace; results ship as commits pushed to the default branch. POST
Next Page