Company logoTrust Center Documentation

Get brand settings

Retrieve current brand settings for the tenant including theme colors, fonts, logo, and deployment configuration.

Retrieve current brand settings for the tenant including theme colors, fonts, logo, and deployment configuration.

GET
/api/v1/brand

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Response Body

application/json

curl -X GET "https://app.orbiqhq.com/api/v1/brand"
{
  "title": "Acme Trust Center",
  "logo": "https://directus.example.com/assets/logo-123",
  "hero": "https://directus.example.com/assets/hero-456",
  "custom_font_url": "https://directus.example.com/assets/font-789",
  "custom_font_name": "BrandFont.woff2",
  "primary_color": "#007bff",
  "background_color": "#f8f9fa",
  "text_color": "#1f2937",
  "font_family": "Inter, sans-serif",
  "overview_text": "Welcome to our trust center",
  "overview_text_2": "We also invest heavily in privacy and reliability.",
  "brand_extended": {
    "css": ".markdown-viewer h2 { color: #123456; }"
  },
  "footer_text": "© 2025 Acme. All rights reserved.",
  "footer_links": [
    {
      "id": "link1",
      "text": "Privacy Policy",
      "url": "https://Acme.de/privacy"
    }
  ],
  "deployment_domains": "trust.Acme.de"
}
Empty
Empty

How is this guide?