---
title: "Retrieve brands"
url: "https://earlyaccess.developers.bynder.com/apis/brands-1/versions/74130be2-4512-49f1-8cd8-b4df043911ce/paths/api-v4-brands/get"
---

> Full API specification: https://earlyaccess.developers.bynder.com/apis/brands-1/versions/74130be2-4512-49f1-8cd8-b4df043911ce.md

# Retrieve brands

`GET` `/api/v4/brands/`

## Responses

- `200` - Successful response

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Brands
  version: 1.0.0
servers:
  - url: https://{your-bynder-domain}/
paths:
  /api/v4/brands/:
    get:
      responses:
        "200":
          content:
            application/json:
              schema:
                items:
                  properties:
                    description:
                      type: string
                    id:
                      type: string
                    image:
                      type: string
                    name:
                      type: string
                    subBrands:
                      items:
                        properties:
                          description:
                            type: string
                          id:
                            type: string
                          image:
                            type: string
                          name:
                            type: string
                        type: object
                      type: array
                  type: object
                type: array
          description: Successful response
      security:
        - permanentToken: []
        - OAuth2: []
      summary: Retrieve brands
security:
  - permanentToken: []
  - OAuth2: []
components:
  securitySchemes:
    permanentToken:
      in: header
      name: Authorization
      type: apiKey
    OAuth2:
      flows:
        authorizationCode:
          authorizationUrl: https://{your-auth-url}
          scopes: {}
          tokenUrl: https://{your-bynder-domain}/v6/authentication/oauth2/token
        clientCredentials:
          scopes: {}
          tokenUrl: https://{your-bynder-domain}/v6/authentication/oauth2/token
      type: oauth2
```
