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

# Get the site brand

> The brand files by slot (logo, favicon, …) with signed preview URLs, the advisory hints, and the navbar/footer chrome the whole site wears.



## OpenAPI

````yaml /openapi.json get /v1/projects/{projectId}/brand
openapi: 3.0.0
info:
  title: wondeya Developer API
  description: >-
    The public REST API for building on wondeya: agents, projects, pages,
    knowledge, assets, brand, theme, usage, retrieval and chat, authenticated by
    a workspace API key (`Authorization: Bearer wdy_live_…`).
  version: 0.1.0
  contact:
    name: wondeya
    url: https://wondeya.com
    email: team@wondeya.com
  license:
    name: Proprietary
    url: https://wondeya.com/terms
servers:
  - url: https://api.wondeya.com
    description: Production
  - url: http://localhost:8080
    description: Development
security: []
tags:
  - name: Identity
  - name: Agents
  - name: Projects
  - name: Pages
  - name: Knowledge
  - name: Assets
  - name: Brand
  - name: Usage
  - name: Chat
paths:
  /v1/projects/{projectId}/brand:
    get:
      tags:
        - Brand
      summary: Get the site brand
      description: >-
        The brand files by slot (logo, favicon, …) with signed preview URLs, the
        advisory hints, and the navbar/footer chrome the whole site wears.
      operationId: PublicBrandController_getBrand_v1
      parameters:
        - name: projectId
          required: true
          in: path
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicBrandDto'
      security:
        - api-key: []
components:
  schemas:
    PublicBrandDto:
      type: object
      properties:
        slots:
          type: object
          additionalProperties: true
          description: >-
            The brand files by slot (logo, favicon, …). A slot is `null` when it
            has no file.
        hints:
          description: Advisory hint codes (e.g. what is worth uploading by hand).
          type: array
          items:
            type: string
        chrome:
          $ref: '#/components/schemas/PublicBrandChromeDto'
      required:
        - slots
        - hints
        - chrome
    PublicBrandChromeDto:
      type: object
      properties:
        navLinks:
          type: array
          items:
            $ref: '#/components/schemas/PublicChromeLinkDto'
        footerGroups:
          type: array
          items:
            $ref: '#/components/schemas/PublicChromeLinkGroupDto'
        socials:
          type: array
          items:
            $ref: '#/components/schemas/PublicChromeSocialDto'
        legalName:
          $ref: '#/components/schemas/PublicLocalizedTextDto'
        contact:
          description: >-
            The support email and optional postal address (D-67). Empty means no
            contact block.
          allOf:
            - $ref: '#/components/schemas/PublicChromeContactDto'
      required:
        - navLinks
        - footerGroups
        - socials
        - legalName
        - contact
    PublicChromeLinkDto:
      type: object
      properties:
        label:
          type: string
          description: Resolved to the response’s `locale`.
        href:
          type: string
          description: An absolute http(s) URL, or a path on this site.
        variant:
          type: string
          enum:
            - link
            - primary
            - secondary
      required:
        - label
        - href
        - variant
    PublicChromeLinkGroupDto:
      type: object
      properties:
        title:
          type: string
          description: Resolved to the response’s `locale`.
        links:
          type: array
          items:
            $ref: '#/components/schemas/PublicChromeLinkDto'
      required:
        - title
        - links
    PublicChromeSocialDto:
      type: object
      properties:
        network:
          type: string
          enum:
            - x
            - linkedin
            - instagram
            - facebook
            - youtube
            - tiktok
            - github
            - whatsapp
        href:
          type: string
      required:
        - network
        - href
    PublicLocalizedTextDto:
      type: object
      properties:
        es:
          type: string
        en:
          type: string
    PublicChromeContactDto:
      type: object
      properties:
        email:
          type: string
          description: Absent when no support email is set.
        addressLines:
          type: array
          items:
            type: string
      required:
        - addressLines
  securitySchemes:
    api-key:
      scheme: bearer
      bearerFormat: opaque
      type: http
      description: >-
        A workspace API key: wdy_live_… / wdy_test_…. Created at POST
        /workspaces/{tenantId}/keys and shown exactly once.

````