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

# List apps

> Get all apps for a workspace. Requires API Secret (app or workspace). Pass workspace via X-Workspace header or workspace_id param.



## OpenAPI

````yaml /swagger.json get /v1/apps
openapi: 3.0.1
info:
  title: Scute API
  version: v1
  description: API for managing users in Scute applications
servers:
  - url: https://{defaultHost}
    variables:
      defaultHost:
        default: api.scute.io
  - url: http://localhost:3333
    description: Development server
security:
  - apiSecret: []
    userAccess: []
paths:
  /v1/apps:
    get:
      tags:
        - Apps
      summary: List apps
      description: >-
        Get all apps for a workspace. Requires API Secret (app or workspace).
        Pass workspace via X-Workspace header or workspace_id param.
      operationId: listApps
      parameters:
        - name: X-Workspace
          in: header
          required: false
          description: Workspace ID
          schema:
            type: string
        - name: workspace_id
          in: query
          required: false
          description: Workspace ID (alternative to X-Workspace header)
          schema:
            type: string
      responses:
        '200':
          description: successful
          content:
            application/json:
              schema:
                type: object
                properties:
                  workspace_id:
                    type: string
                  apps:
                    type: array
                    items:
                      $ref: '#/components/schemas/App'
        '401':
          description: unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
        '404':
          description: workspace not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  error_code:
                    type: string
      security:
        - apiSecret: []
components:
  schemas:
    App:
      type: object
      properties:
        id:
          type: string
          description: App ID
        name:
          type: string
          description: App name
        origin:
          type: string
          nullable: true
          description: App origin URL
        callback_url:
          type: string
          nullable: true
          description: OAuth callback URL
        logo:
          type: string
          nullable: true
          description: App logo URL
        slug:
          type: string
          description: App slug identifier
        created_at:
          type: string
          format: date-time
          description: Creation timestamp
        updated_at:
          type: string
          format: date-time
          description: Last update timestamp
      required:
        - id
        - name
        - created_at
        - slug
  securitySchemes:
    apiSecret:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: API Secret token
    userAccess:
      type: apiKey
      name: X-Authorization
      in: header
      description: User Access token

````