---
title: "List Apps"
method: GET
path: "/webapi/v2/apps"
tags: ["App Market"]
---

# List Apps

`GET /webapi/v2/apps`

Get a list of apps. The apps are sorted by weight in descending order by default.

## Query parameters

- `searchTerm` string, nullable — Search term for app name or description
- `categories` string[], nullable — Filter by app categories
- `type` string, nullable — Filter by app type
- `published` boolean, nullable — Filter by published status
- `pageSize` integer — Number of apps per page
- `cursor` string, nullable — Cursor for pagination

## Headers

- `AGENT-EMAIL` string
- `USER-EMAIL` string
- `OWN-USER-ID` string

## Response `200`

OK

- AppsResponse — Response for listing apps.
  - `apps` App[], required — List of apps
    - `id` string, required — Unique ID of the app
    - `name` string, required — Name of the app
    - `description` string, nullable — Description of the app
    - `type` string, required — Type of the app
    - `category` string, required — Category of the app
    - `published` boolean, required — Whether the app is published
    - `agentPermission` AgentPermissionResponse, required — Response model for agent permission.
      - `accessAgents` AccessAgent[], nullable
        - `agentId` string, required — 액세스 에이전트의 에이전트 ID
        - `accessType` 'order_1_editor' | 'order_2_reader', required
      - `accessPermissionGroups` AccessPermissionGroupResponse[], nullable
        - `permissionGroupId` string, required — The permission group ID
        - `permissionGroupName` string, required — The permission group name
        - `accessType` 'order_1_editor' | 'order_2_reader', required
      - `viewAccessToAgent` boolean, required
    - `userPermission` UserPermissionResponse, required
      - `ownUserIds` string[], nullable
      - `customerGroups` string[], nullable
      - `viewAccessToUser` boolean, required
  - `cursor` string, nullable — Cursor for pagination

## Other responses

- `400` — Invalid request parameters.
- `401` — Authentication failed. The API-KEY header is missing or invalid.
- `403` — Access denied. The project is inactive or the request IP is not allowed.
- `500` — Internal server error.

---

[API](https://skmtc.dev/allganize/apis/alli-api-documentation.md) · [All operations](https://skmtc.dev/allganize/apis/alli-api-documentation/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/allganize/alli-api-documentation/revisions/c3e966e54dfc/schema)
