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

# Get current release metadata

> Returns current release notes payload consumed by in-app release/update modals.



## OpenAPI

````yaml https://api.superwize.ai/api/openapi.json post /releaseNotes/getCurrentRelease
openapi: 3.1.1
info:
  title: SuperWize API
  version: 1.1.2
  description: >-
    SuperWize RPC API. Authenticated endpoints support Better Auth session
    cookies, Authorization: Bearer <session_token>, or x-api-key.
servers:
  - url: http://api.superwize.ai/api
security: []
tags:
  - name: System
    description: Service health and internal diagnostics.
  - name: Authentication
    description: Session, email verification, and API token endpoints.
  - name: Audio
    description: Speech-to-text and related audio features.
  - name: Chat
    description: Conversation streaming, history, branching, and feedback.
  - name: Credits
    description: Credit balances, usage history, and reward grants.
  - name: Subscription
    description: Subscription tier and status polling endpoints.
  - name: Mini Apps
    description: Curated mini app catalog endpoints.
  - name: News
    description: Curated news feed, article source, and article feedback endpoints.
  - name: Release Notes
    description: Current app release metadata and features.
  - name: Support
    description: Contact/support request endpoints.
  - name: Images
    description: Image conversion, upload, and retrieval endpoints.
  - name: Files
    description: Generic file upload and retrieval endpoints.
  - name: Notifications
    description: Push token registration and test notifications.
  - name: Group Chat
    description: Group lifecycle, invites, messaging, and realtime events.
  - name: Preferences
    description: User preferences and account-type controls.
  - name: Widgets
    description: Widget thread and interaction endpoints.
  - name: Bookmarks
    description: Bookmark groups and conversation associations.
paths:
  /releaseNotes/getCurrentRelease:
    post:
      tags:
        - Release Notes
      summary: Get current release metadata
      description: >-
        Returns current release notes payload consumed by in-app release/update
        modals.
      operationId: releaseNotes.getCurrentRelease
      responses:
        '200':
          description: Current release metadata returned.
          content:
            application/json:
              schema:
                anyOf:
                  - type: object
                    properties:
                      currentVersion:
                        type: string
                      minVersion:
                        type: string
                      features:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type: string
                            title:
                              type: object
                              properties:
                                en:
                                  type: string
                                ur:
                                  type: string
                              required:
                                - en
                                - ur
                            description:
                              type: object
                              properties:
                                en:
                                  type: string
                                ur:
                                  type: string
                              required:
                                - en
                                - ur
                            icon:
                              type: string
                          required:
                            - id
                            - title
                            - description
                    required:
                      - currentVersion
                      - minVersion
                      - features
                  - type: 'null'
              example:
                currentVersion: 1.1.6
                minVersion: 1.1.6
                features:
                  - id: obj_01JHKZ0PV2WX123456789
                    title:
                      en: Smarter Home Suggestions
                      ur: بہتر ہوم تجاویز
                    description:
                      en: >-
                        Suggestions now better reflect current headlines and
                        sports updates.
                      ur: >-
                        تجاویز اب تازہ خبروں اور کھیل کی اپ ڈیٹس کے مطابق بہتر
                        ہیں۔
                    icon: https://cdn.superwize.ai/assets/icons/release-notes.png

````