Skip to main content
Retrieve collection details including all data sources.
collection_id
string
required
The collection ID
curl -X GET https://api-be.atthene.com/api/v1/collections/coll_123/ \
  -H "x-api-key: YOUR_API_KEY"

Response

{
  "id": "coll_123",
  "name": "Product Documentation",
  "description": "All product manuals and guides",
  "status": "completed",
  "progress": 100,
  "data_source_count": 15,
  "total_size": 52428800,
  "datasources": [
    {
      "id": "cds_1",
      "data_source": "file_123",
      "data_source_name": "manual.pdf",
      "data_source_type": "document",
      "data_source_size": 3495253,
      "created_at": "2025-01-15T10:30:00Z"
    }
  ],
  "created_at": "2025-01-15T10:30:00Z",
  "updated_at": "2025-01-15T10:35:00Z"
}