> ## Documentation Index
> Fetch the complete documentation index at: https://snowseo.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Brand Settings

> Get your brand profile, target audience, and competitor information.

Read your brand configuration — the same settings you manage in the dashboard. Useful for syncing brand info to your own tools or displaying it in a custom dashboard.


## OpenAPI

````yaml GET /v3/settings/brand/
openapi: 3.0.0
info:
  title: SnowSEO API
  description: API documentation for SnowSEO
  version: 1.0.0
servers:
  - url: https://api.snowseo.com
    description: Production server
security: []
tags:
  - name: Keywords
    description: Keyword research and suggestion end-points
  - name: Onboarding
    description: Brand onboarding and strategy end-points
  - name: Brands
    description: Brand management end-points
  - name: Organizations
    description: Organization and member end-points
  - name: Integrations
    description: Google Search Console and other integrations
  - name: Utilities
    description: Common utility end-points like screenshots and uploads
externalDocs:
  url: https://snowseo.com/docs
  description: Find more info here
paths:
  /v3/settings/brand/:
    get:
      tags:
        - Settings
      summary: Get brand settings
      description: Returns the brand/settings for a team.
      operationId: getBrandSettings
      parameters:
        - schema:
            type: string
          in: query
          name: teamId
          required: false
          description: Team ID
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  data:
                    type: object
                    properties:
                      name:
                        type: string
                      website:
                        type: string
                      blogSuffix:
                        type: string
                        nullable: true
                      description:
                        type: string
                      contentGuidelines:
                        type: string
                      screenshots:
                        type: array
                        items:
                          type: object
                          additionalProperties: true
                      logo:
                        type: string
                        nullable: true
                      brandColors:
                        type: object
                        nullable: true
                        additionalProperties: true
                      websiteChangeAllowed:
                        type: boolean
                      websiteChangeCooldownDays:
                        type: number
                      brandSlug:
                        type: string
                        nullable: true
                      aliases:
                        type: array
                        items:
                          type: string
                      onlinePresence:
                        type: object
                        additionalProperties: true
                      whiteLabel:
                        type: object
                        additionalProperties: true
        '400':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  error:
                    type: string
        '404':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  error:
                    type: string

````