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

# [One Click Apps] Get an application

> Retrieve a One Click App deployed on the instance with its status, domains and update state.



## OpenAPI

````yaml https://api.onetsolutions.net/schema get /v1/organizations/{organization_id}/projects/{project_id}/compute/instances/{instance_id}/one-click/apps/{app_id}
openapi: 3.0.3
info:
  title: OnetSolutions API
  version: v1 (v1)
  description: >

    ## Overview


    The OnetSolutions API provides programmatic access to manage your cloud
    infrastructure, domains, and web hosting services.


    ## Authentication


    All API requests require authentication using one of the following methods:


    - **JWT Token**: Obtain a token via login endpoints and include it in the
    `Authorization: Bearer <token>` header

    - **API Key**: Generate an API key from your account settings and use it as
    `Authorization: Bearer sk-onetsolutions-...`


    ## Rate Limiting


    API requests are rate-limited to ensure fair usage:

    - **Standard**: 1000 requests per minute

    - **Burst**: 100 requests per second


    ## Pagination


    List endpoints return paginated results. Use `page` and `page_size` query
    parameters.


    ## Error Handling


    The API uses standard HTTP status codes:

    - `200` Success

    - `201` Created

    - `400` Bad Request

    - `401` Unauthorized

    - `403` Forbidden

    - `404` Not Found

    - `429` Too Many Requests
servers:
  - url: https://api.onetsolutions.net
    description: Production
security: []
tags:
  - name: Authentication
    description: >-
      Login, passwordless authentication, MFA, OAuth providers, and token
      management.
  - name: Organizations
    description: >-
      Organization management, members, roles, modules, audit logs, and
      notification settings.
  - name: Projects
    description: Project management, team members, and project-scoped resources.
  - name: Compute
    description: >-
      Cloud instances, volumes, snapshots, backups, VPCs, firewalls, SSH keys,
      uptime monitors, and instance tasks.
  - name: Billing
    description: >-
      Shopping cart, orders, invoices, payments, payment methods, gateways,
      promo codes, and balance management.
  - name: Domains
    description: >-
      Domain availability, registration, transfers, DNS zones, DNS records, and
      TLD information.
  - name: Web Hosting
    description: >-
      cPanel-based web hosting, emails, databases, subdomains, FTP accounts,
      addon domains, and SSL certificates.
paths:
  /v1/organizations/{organization_id}/projects/{project_id}/compute/instances/{instance_id}/one-click/apps/{app_id}:
    get:
      tags:
        - Compute
      summary: '[One Click Apps] Get an application'
      description: >-
        Retrieve a One Click App deployed on the instance with its status,
        domains and update state.
      operationId: one_click_apps_retrieve
      parameters:
        - in: path
          name: app_id
          schema:
            type: string
          description: Unique identifier of the deployed One Click App.
          required: true
        - in: path
          name: instance_id
          schema:
            type: string
          description: Unique identifier of the compute instance.
          required: true
        - in: path
          name: organization_id
          schema:
            type: string
          description: Unique identifier of the organization that owns the resource.
          required: true
        - in: path
          name: project_id
          schema:
            type: string
          description: Unique identifier of the project containing the resource.
          required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InstanceApp'
          description: ''
        '401':
          description: Authentication credentials missing or invalid
        '403':
          description: Insufficient permissions on this instance
        '404':
          description: Application or instance not found
      security:
        - BearerAuth: []
components:
  schemas:
    InstanceApp:
      type: object
      properties:
        id:
          type: string
          format: uuid
          readOnly: true
        name:
          type: string
          readOnly: true
          description: Unique per instance
          pattern: ^[-a-zA-Z0-9_]+$
        kind:
          enum:
            - catalog
            - custom
          type: string
          description: |-
            * `catalog` - Catalog
            * `custom` - Custom
          x-spec-enum-id: 23dab8cc6bfa1c93
          readOnly: true
        display_name:
          type: string
          readOnly: true
        catalog_app:
          allOf:
            - $ref: '#/components/schemas/OneClickAppSummary'
          readOnly: true
          nullable: true
        source:
          readOnly: true
          description: Custom application source (git or image), no secret
        resource_kind:
          type: string
          readOnly: true
          description: Provider resource kind (e.g. service or application on Coolify)
        has_webhook:
          type: boolean
          readOnly: true
          description: True when a redeploy webhook secret exists
        status:
          enum:
            - pending
            - deploying
            - running
            - degraded
            - stopped
            - starting
            - failed
            - deleting
            - deleted
            - unknown
          type: string
          description: |-
            * `pending` - Pending
            * `deploying` - Deploying
            * `running` - Running
            * `degraded` - Degraded
            * `stopped` - Stopped
            * `starting` - Starting
            * `failed` - Failed
            * `deleting` - Deleting
            * `deleted` - Deleted
            * `unknown` - Unknown
          x-spec-enum-id: 501dc79048528b04
          readOnly: true
        raw_status:
          type: string
          readOnly: true
        domains:
          type: array
          items:
            $ref: '#/components/schemas/AppDomain'
          readOnly: true
        install_parameters:
          type: object
          additionalProperties: {}
          readOnly: true
        template_updated_at_deploy:
          type: string
          format: date-time
          readOnly: true
          nullable: true
        update_available:
          type: boolean
          readOnly: true
        image_updates:
          type: array
          items:
            $ref: '#/components/schemas/AppImageUpdate'
          readOnly: true
        images_checked_at:
          type: string
          format: date-time
          readOnly: true
          nullable: true
        deployed_at:
          type: string
          format: date-time
          readOnly: true
          nullable: true
        last_deployed_at:
          type: string
          format: date-time
          readOnly: true
          nullable: true
        last_status_at:
          type: string
          format: date-time
          readOnly: true
          nullable: true
        task_id:
          type: string
          format: uuid
          readOnly: true
          nullable: true
        created:
          type: string
          format: date-time
          readOnly: true
        modified:
          type: string
          format: date-time
          readOnly: true
      required:
        - catalog_app
        - created
        - deployed_at
        - display_name
        - domains
        - has_webhook
        - id
        - image_updates
        - images_checked_at
        - install_parameters
        - kind
        - last_deployed_at
        - last_status_at
        - modified
        - name
        - raw_status
        - resource_kind
        - source
        - status
        - task_id
        - template_updated_at_deploy
        - update_available
    OneClickAppSummary:
      type: object
      properties:
        id:
          type: string
          format: uuid
          readOnly: true
        provider:
          enum:
            - coolify
          type: string
          description: '* `coolify` - Coolify'
          x-spec-enum-id: 26e69027e64d78b2
          readOnly: true
          default: coolify
        slug:
          type: string
          readOnly: true
          description: Provider template identifier (Coolify service type)
        name:
          type: string
          readOnly: true
        slogan:
          type: string
          readOnly: true
        category:
          type: string
          readOnly: true
          description: Raw upstream category
        display_category:
          enum:
            - cms
            - collaboration
            - business
            - automation
            - analytics
            - developer
            - security
            - monitoring
            - communication
            - ai
            - media
            - other
          type: string
          description: |-
            * `cms` - CMS
            * `collaboration` - Collaboration
            * `business` - Business
            * `automation` - Automation
            * `analytics` - Analytics
            * `developer` - Developer
            * `security` - Security
            * `monitoring` - Monitoring
            * `communication` - Communication
            * `ai` - AI
            * `media` - Media
            * `other` - Other
          x-spec-enum-id: f6227a6c4281721f
          readOnly: true
        logo_url:
          type: string
          format: uri
          readOnly: true
        documentation_url:
          type: string
          format: uri
          readOnly: true
        port:
          type: integer
          readOnly: true
          nullable: true
      required:
        - category
        - display_category
        - documentation_url
        - id
        - logo_url
        - name
        - port
        - provider
        - slogan
        - slug
    AppDomain:
      type: object
      properties:
        service:
          type: string
          readOnly: true
          description: Sub service the domain is attached to
        url:
          type: string
          readOnly: true
          description: Public URL of the sub service
        custom:
          type: boolean
          readOnly: true
          description: False for the domain generated by the platform
        managed:
          type: boolean
          readOnly: true
          default: false
          description: >-
            True when the A record lives in a DNS zone managed by the
            organization on the console
      required:
        - custom
        - managed
        - service
        - url
    AppImageUpdate:
      type: object
      properties:
        service:
          type: string
          readOnly: true
        image:
          type: string
          readOnly: true
        outdated:
          type: boolean
          readOnly: true
      required:
        - image
        - outdated
        - service
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT or API Key
      description: >-
        Use `Authorization: Bearer <token>` header. Token can be a JWT token or
        an API key (format: `sk-onetsolutions-...`).

````