## Get connection (by id) `connections.get_by_id(strconnection_id) -> ConnectionGetByIDResponse` **get** `/v3/connections/{connectionId}` Get connection details with id ### Parameters - `connection_id: str` ### Returns - `class ConnectionGetByIDResponse: …` - `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 ) response = client.connections.get_by_id( "connectionId", ) print(response.id) ``` #### Response ```json { "id": "id", "createdAt": "createdAt", "provider": "provider", "containerTags": [ "string" ], "documentLimit": 0, "email": "email", "expiresAt": "expiresAt", "metadata": { "foo": "bar" } } ```