Retrieve all collections created by the authenticated user.
Query Parameters
Filter by status: pending, running, completed, failed
Search collections by name or description
curl -X GET "https://api-be.atthene.com/api/v1/collections/?status=completed" \
-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,
"created_at": "2025-01-15T10:30:00Z",
"updated_at": "2025-01-15T10:35:00Z"
}
]