Documentation Index
Fetch the complete documentation index at: https://hubify.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
Labs API
Manage research labs programmatically. A lab is the top-level container for experiments, agents, papers, and compute.List Labs
Returns all labs the authenticated user has access to.
Get Lab
Returns detailed information about a specific lab.
This endpoint is planned — not yet shipped. Use
GET /api/v1/labs (the list endpoint) and filter by id or slug client-side.Create Lab
Create a new research lab.
This endpoint is planned. Labs are currently created via the web app or CLI (
hubify lab create).| Field | Type | Required | Description |
|---|---|---|---|
name | string | Yes | Human-readable lab name |
slug | string | No | URL identifier (auto-generated from name if omitted) |
template | string | No | cosmology, ml, biology, blank |
visibility | string | No | public or private (default: private) |
description | string | No | Brief description |
201 Created
Update Lab
Update lab settings.
This endpoint is planned — not yet shipped. Use the web app Settings view to update lab details.
Delete Lab
Permanently delete a lab and all its contents.
This endpoint is planned — not yet shipped. Lab deletion is available in the web app Settings view.
204 No Content