Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.trellis.sh/llms.txt

Use this file to discover all available pages before exploring further.

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"
    }
  ]
}