Skip to main content
Projects are document collections that can be queried using natural language.
Authorization
string
required
Bearer token obtained from the authenticate endpoint.

Response

projects
array
required
List of projects available for querying.
curl -X GET https://api.trellis.sh/v1/projects \
  -H "Authorization: Bearer YOUR_TOKEN"
{
  "projects": [
    {
      "id": "proj_abc123",
      "name": "Q4 Financial Review",
      "description": "Quarterly financial analysis documents",
      "tags": ["finance", "quarterly"],
      "created_at": "2025-10-01T09:00:00Z",
      "updated_at": "2025-12-15T14:30:00Z"
    }
  ]
}