# `api.companies.get_brands` > `GET /companies/brands` — ACPortal **Python** ```python api.companies.get_brands() -> list[CompanyBrand] ``` **CLI** ```bash ab companies get_brands ``` GET /companies/brands ## Response Returns a list of `List[CompanyBrand]`. | Field | Type | Required | Description | |---|---|---|---| | `id` | `Optional[str]` | no | Brand ID | | `name` | `Optional[str]` | no | Brand name | | `parentId` | `Optional[str]` | no | Parent brand ID | --- [← Back to api.companies](../companies.md)