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

# Get the per-app UI config (disabled venues + categories)



## OpenAPI

````yaml /openapi/openapi.json get /app/config
openapi: 3.0.2
info:
  title: AGG API
  version: 1.0.0
  description: >-
    Prediction market aggregator REST API — authentication, users, venue events,
    venue markets, orderbooks, charts, and execution workflows.
servers:
  - url: https://api.agg.market
    description: Production
  - url: https://api.staging.agg.market
    description: Staging
security: []
paths:
  /app/config:
    get:
      tags:
        - App Management
      summary: Get the per-app UI config (disabled venues + categories)
      operationId: getAppClientConfig
      responses:
        '200':
          description: '200'
          content:
            application/json:
              schema:
                type: object
                required:
                  - disabledVenues
                  - disabledCategoryPresets
                  - earlyAccessEnabled
                  - authOptions
                properties:
                  disabledVenues:
                    type: array
                    items:
                      type: string
                      enum:
                        - kalshi
                        - polymarket
                        - limitless
                        - opinion
                        - predict
                        - probable
                        - myriad
                        - hyperliquid
                  disabledCategoryPresets:
                    type: array
                    items:
                      type: string
                  earlyAccessEnabled:
                    type: boolean
                  authOptions:
                    type: array
                    items:
                      type: object
                      required:
                        - provider
                        - type
                        - enabled
                      properties:
                        provider:
                          type: string
                          enum:
                            - google
                            - twitter
                            - apple
                            - email
                            - siwe
                            - siws
                        type:
                          type: string
                          enum:
                            - oauth
                            - email
                            - wallet
                        enabled:
                          type: boolean
                        callbackUrl:
                          type: string
                        statement:
                          type: string
      security:
        - appId: []
components:
  securitySchemes:
    appId:
      type: apiKey
      in: header
      name: x-app-id
      description: Your application ID. Required for all app-tier and user-tier routes.

````