## List connections `connections.list(ConnectionListParams**kwargs) -> ConnectionListResponse` **post** `/v3/connections/list` List all connections ### Parameters - `container_tags: Optional[Sequence[str]]` Optional comma-separated list of container tags to filter documents by ### Returns - `List[ConnectionListResponseItem]` - `id: str` - `created_at: str` - `provider: str` - `container_tags: Optional[List[str]]` - `document_limit: Optional[float]` - `email: Optional[str]` - `expires_at: Optional[str]` - `metadata: Optional[Dict[str, object]]` ### Example ```python import os from supermemory import Supermemory client = Supermemory( api_key=os.environ.get("SUPERMEMORY_API_KEY"), # This is the default and can be omitted ) connections = client.connections.list() print(connections) ``` #### Response ```json [ { "id": "id", "createdAt": "createdAt", "provider": "provider", "containerTags": [ "string" ], "documentLimit": 0, "email": "email", "expiresAt": "expiresAt", "metadata": { "foo": "bar" } } ] ```