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

# Get Widget Configurations

> Retrieve styling settings, including colors and other visual elements for the Gameball widget.



## OpenAPI

````yaml GET /api/v4.0/integrations/configurations/widget
openapi: 3.1.0
info:
  title: Gameball API
  description: >-
    Gameball REST API v4.0 - Complete API reference for integrating loyalty,
    gamification, and customer engagement features
  version: 4.0.0
servers:
  - url: https://api.gameball.co
security:
  - bearerAuth: []
paths:
  /api/v4.0/integrations/configurations/widget:
    get:
      description: >-
        Retrieve styling settings, including colors and other visual elements
        for the Gameball widget.
      responses:
        '200':
          description: Widget configuration retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  colors:
                    type: object
                    properties:
                      primary:
                        type: string
                      secondary:
                        type: string
                      accent:
                        type: string
                      background:
                        type: string
                      text:
                        type: string
                  layout:
                    type: object
                    properties:
                      position:
                        type: string
                        enum:
                          - bottom-right
                          - bottom-left
                          - top-right
                          - top-left
                      size:
                        type: string
                        enum:
                          - small
                          - medium
                          - large
                      showOnMobile:
                        type: boolean
                  features:
                    type: object
                    properties:
                      showBalance:
                        type: boolean
                      showPoints:
                        type: boolean
                      showTier:
                        type: boolean
                      showNotifications:
                        type: boolean
      security:
        - apiKey: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
    apiKey:
      type: apiKey
      in: header
      name: apikey

````