## List `orgs.list() -> OrgListResponse` **get** `/v0/orgs` List organizations accessible to the current authentication method. ### Returns - `class OrgListResponse: …` - `data: List[Org]` - `display_name: Optional[str]` - `enable_ai_commit_messages: bool` - `object: Literal["org"]` - `"org"` - `slug: str` - `has_more: bool` - `next_cursor: Optional[str]` ### Example ```python import os from stainless_v0 import Stainless client = Stainless( api_key=os.environ.get("STAINLESS_API_KEY"), # This is the default and can be omitted ) orgs = client.orgs.list() print(orgs.data) ```