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

# Get app IDs for native clients

> Returns the public application IDs for native clients (CLI, VS Code Extension, IntelliJ IDEA Extension). No authentication required.



## OpenAPI

````yaml get /client-apps
openapi: 3.0.0
info:
  title: Cybedefend API
  description: >-
    CybeDefend is an advanced API for application security analysis. Key
    features include OAuth 2.0 authentication, user/organization/project
    management, and REBAC-based permissions. It excels in static, dynamic, and
    IaC security analyses (SAST, DAST, IaC, etc.).
  version: '1.0'
  contact: {}
servers:
  - url: https://api-eu.cybedefend.com
    description: EU
  - url: https://api-us.cybedefend.com
    description: US
security: []
tags: []
paths:
  /client-apps:
    get:
      tags:
        - Version
      summary: Get app IDs for native clients
      description: >-
        Returns the public application IDs for native clients (CLI, VS Code
        Extension, IntelliJ IDEA Extension). No authentication required.
      operationId: AppController_getClientApps
      parameters: []
      responses:
        '200':
          description: App IDs for each native client
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ClientAppsResponseDto'
components:
  schemas:
    ClientAppsResponseDto:
      type: object
      properties:
        cli:
          $ref: '#/components/schemas/AppEntryDto'
        vscode:
          $ref: '#/components/schemas/AppEntryDto'
        intellij:
          $ref: '#/components/schemas/AppEntryDto'
      required:
        - cli
        - vscode
        - intellij
    AppEntryDto:
      type: object
      properties:
        appId:
          type: string
          description: Application ID (public client identifier)
          example: abc123xyz
      required:
        - appId

````