curl -X GET "https://api.mielto.com/api/v1/collections?skip=0&limit=50&status=active" \ -H "X-API-Key: YOUR_API_KEY"
{ "data": [ { "id": "col_123456789", "name": "Product Documentation", "description": "All product documentation and guides", "store_type": "pgvector", "visibility": "private", "status": "active", "tags": ["docs", "product"], "stats": { "document_count": 42, "total_size_mb": 15.7, "last_updated": "2024-01-16T09:30:00Z" }, "meta_data": { "category": "documentation" }, "embedding": { "provider": "openai", "model": "text-embedding-ada-002", "dimensions": 1536 }, "workspace_id": "wsp_123456789", "created_by": "usr_123456789", "created_at": "2024-01-15T10:00:00Z", "updated_at": "2024-01-16T09:30:00Z" } ], "total_count": 1 }
Retrieve all collections in the current workspace with filtering and pagination
Show collection object