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

# Fetch app manifest

> Retrieves the manifest and details of a specific app



## OpenAPI

````yaml get /apps/fetch-app-manifest/{id}
openapi: 3.0.0
info:
  title: THENA APPS STUDIO
  description: >-
    Thena apps studio is a comprehensive API suite designed to facilitate the
    creation and management of apps.
  version: '1.0'
  contact: {}
servers:
  - url: https://apps-studio.thena.ai
security: []
tags: []
paths:
  /apps/fetch-app-manifest/{id}:
    get:
      tags:
        - App Creation
      summary: Fetch app manifest
      description: Retrieves the manifest and details of a specific app
      operationId: AppManifestController_fetchAppManifest
      parameters:
        - name: id
          required: true
          in: path
          description: Unique identifier of the app
          schema:
            type: string
      responses:
        '200':
          description: App manifest retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AppResponseDto'
        '403':
          description: User lacks required permissions or cannot access private app
        '404':
          description: App not found
      security:
        - x-api-key: []
components:
  schemas:
    AppResponseDto:
      type: object
      properties:
        uid:
          type: string
          description: Unique identifier of the app
          example: VGQJEZEJ10W**********R7YPFVEG
        name:
          type: string
          description: Name of the app
          example: Thena Hub
        slug:
          type: string
          description: Slug of the app
          example: thena-hub
        description:
          type: string
          description: Description of the app
          example: >-
            Boost your ticketing workflows with Thena Hub! Seamlessly manage
            customer interactions, automate ticket updates, and collaborate with
            your team—all without leaving Slack
        visibility:
          type: string
          description: Visibility status of the app
          enum:
            - public
            - private
            - unlisted
          example: public
        manifest:
          type: object
          description: Complete app manifest containing all configurations
        createdAt:
          format: date-time
          type: string
          description: Date and time when the app was created
          example: '2024-12-13T10:00:00.000Z'
        updatedAt:
          format: date-time
          type: string
          description: Date and time of last update
          example: '2024-12-13T10:00:00.000Z'
      required:
        - uid
        - name
        - slug
        - description
        - visibility
        - manifest
        - createdAt
        - updatedAt
  securitySchemes:
    x-api-key:
      type: apiKey
      in: header
      name: x-api-key

````