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

# Get widget configuration

> Returns the merged widget configuration for the project associated with the API key, including available workflows (skills).



## OpenAPI

````yaml /openapi.json get /widget/config
openapi: 3.0.3
info:
  title: Agentic Trust API
  description: >-
    Runtime API for the Agentic Trust AI customer support platform. Use these
    endpoints to manage conversations, send messages, verify user identity, and
    collect feedback.
  version: 1.0.0
  contact:
    name: Agentic Trust Support
    email: security@agentictrust.com
servers:
  - url: https://platform.agentictrust.com/api/v1
    description: Production
security:
  - ApiKeyHeader: []
tags:
  - name: Widget
    description: Widget configuration endpoints.
  - name: Chat
    description: Conversation and message endpoints.
  - name: Identity
    description: User identity verification endpoints.
  - name: Feedback
    description: Conversation feedback endpoints.
paths:
  /widget/config:
    get:
      tags:
        - Widget
      summary: Get widget configuration
      description: >-
        Returns the merged widget configuration for the project associated with
        the API key, including available workflows (skills).
      operationId: getWidgetConfig
      responses:
        '200':
          description: Widget configuration object.
          content:
            application/json:
              schema:
                type: object
                properties:
                  showBranding:
                    type: boolean
                  position:
                    type: string
                    enum:
                      - bottom-right
                      - bottom-left
                  primaryColor:
                    type: string
                    nullable: true
                  bgColor:
                    type: string
                    nullable: true
                  textColor:
                    type: string
                    nullable: true
                  navigationCardColor:
                    type: string
                    nullable: true
                  fontFamily:
                    type: string
                    nullable: true
                  fabIcon:
                    type: string
                    nullable: true
                  fabText:
                    type: string
                    nullable: true
                  availableSkills:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        name:
                          type: string
                        description:
                          type: string
        '401':
          description: Invalid or missing API key.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Project not found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      type: object
      properties:
        error:
          type: string
      required:
        - error
  securitySchemes:
    ApiKeyHeader:
      type: apiKey
      in: header
      name: x-api-key
      description: >-
        API key in `lum_pk_*` format. Pass via `x-api-key` header or
        `Authorization: Bearer <key>`.

````