Skip to main content
List collections that are ready to be used in knowledge bases.
curl -X GET https://api-be.atthene.com/api/v1/knowledge-bases/available-collections/ \
  -H "x-api-key: YOUR_API_KEY"

Response

Returns collections with status “completed” that can be used in knowledge bases:
[
  {
    "id": "coll_123",
    "name": "Product Documentation",
    "description": "All product manuals and guides",
    "status": "completed",
    "data_source_count": 15,
    "total_size": 52428800,
    "created_at": "2025-01-15T10:30:00Z"
  },
  {
    "id": "coll_456", 
    "name": "FAQ Collection",
    "description": "Frequently asked questions",
    "status": "completed",
    "data_source_count": 8,
    "total_size": 1048576,
    "created_at": "2025-01-15T11:00:00Z"
  }
]
Only collections with status “completed” are available for use in knowledge bases.