# `api.companies.available_by_current_user` > `GET /companies/availableByCurrentUser` — ACPortal **Python** ```python api.companies.available_by_current_user() -> list[CompanySimple] ``` **CLI** ```bash ab companies available_by_current_user ``` GET /companies/availableByCurrentUser ## Response Returns a list of `List[CompanySimple]`. | Field | Type | Required | Description | |---|---|---|---| | `id` | `Optional[str]` | no | Company UUID | | `name` | `Optional[str]` | no | Company name | | `code` | `Optional[str]` | no | Short company code | | `companyType` | `Optional[str]` | no | Company type | | `parentCompanyId` | `Optional[str]` | no | Parent company UUID | | `companyName` | `Optional[str]` | no | Full company name | | `typeId` | `Optional[str]` | no | Company type UUID | --- [← Back to api.companies](../companies.md)