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

# Get Firebase Config

> Return the tenant's Firebase config, or None when unset.

Returning None (not 404) lets the admin UI render the empty state
without try/catch — the page hits this endpoint on mount.



## OpenAPI

````yaml https://api.vellaro.io/openapi.json get /api/v1/admin/firebase
openapi: 3.1.0
info:
  title: Vellaro API
  description: Vellaro 2026 — E-commerce API
  version: 0.1.0
servers:
  - url: https://api.vellaro.io
    description: Produzione
security: []
tags: []
paths:
  /api/v1/admin/firebase:
    get:
      tags:
        - admin:firebase
      summary: Get Firebase Config
      description: |-
        Return the tenant's Firebase config, or None when unset.

        Returning None (not 404) lets the admin UI render the empty state
        without try/catch — the page hits this endpoint on mount.
      operationId: get_firebase_config_api_v1_admin_firebase_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/ApiResponse_Union_FirebaseConfigOut__NoneType__
      security:
        - HTTPBearer: []
components:
  schemas:
    ApiResponse_Union_FirebaseConfigOut__NoneType__:
      properties:
        data:
          anyOf:
            - $ref: '#/components/schemas/FirebaseConfigOut'
            - type: 'null'
        meta:
          anyOf:
            - $ref: '#/components/schemas/PaginationMeta'
            - type: 'null'
        error:
          anyOf:
            - type: string
            - type: 'null'
          title: Error
        error_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Error Code
      type: object
      title: ApiResponse[Union[FirebaseConfigOut, NoneType]]
    FirebaseConfigOut:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        tenant_id:
          type: string
          format: uuid
          title: Tenant Id
        project_id:
          type: string
          title: Project Id
        service_account_client_email:
          type: string
          title: Service Account Client Email
        has_service_account:
          type: boolean
          title: Has Service Account
        android_apps:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Android Apps
        ios_apps:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Ios Apps
        web_apps:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Web Apps
        web_push_vapid_key:
          anyOf:
            - type: string
            - type: 'null'
          title: Web Push Vapid Key
        default_channel_id:
          type: string
          title: Default Channel Id
        default_channel_name:
          type: string
          title: Default Channel Name
        is_active:
          type: boolean
          title: Is Active
        last_validated_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Last Validated At
        created_at:
          type: string
          format: date-time
          title: Created At
        updated_at:
          type: string
          format: date-time
          title: Updated At
      type: object
      required:
        - id
        - tenant_id
        - project_id
        - service_account_client_email
        - has_service_account
        - android_apps
        - ios_apps
        - web_apps
        - web_push_vapid_key
        - default_channel_id
        - default_channel_name
        - is_active
        - last_validated_at
        - created_at
        - updated_at
      title: FirebaseConfigOut
      description: Redacted view — never includes the encrypted service-account.
    PaginationMeta:
      properties:
        page:
          type: integer
          title: Page
        page_size:
          type: integer
          title: Page Size
        total:
          type: integer
          title: Total
        total_pages:
          type: integer
          title: Total Pages
      type: object
      required:
        - page
        - page_size
        - total
        - total_pages
      title: PaginationMeta
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````