[Yandex Cloud documentation](../../../index.md) > [Yandex Identity Hub](../../index.md) > [Step-by-step guides](../index.md) > Managing apps (SSO) > OIDC apps > Getting a list of apps

# Getting a list of OIDC apps in Yandex Identity Hub


{% list tabs group=instructions %}

- Cloud Center UI {#cloud-center}

  1. Log in to [Yandex Identity Hub](https://center.yandex.cloud/organization).
  1. In the left-hand panel, select ![shapes-4](../../../_assets/console-icons/shapes-4.svg) **Apps**.

     This will display all [OIDC apps](../../concepts/applications.md#oidc) available in your organization.

- CLI {#cli}

  If you do not have the Yandex Cloud CLI yet, [install and initialize it](../../../cli/quickstart.md#install).

  The folder used by default is the one specified when [creating](../../../cli/operations/profile/profile-create.md) the CLI profile. To change the default folder, use the `yc config set folder-id <folder_ID>` command. You can also specify a different folder for any command using `--folder-name` or `--folder-id`. If you access a resource by its name, the search will be limited to the default folder. If you access a resource by its ID, the search will be global, i.e., through all folders based on access permissions.

  1. See the description of the CLI command to get a list of [OIDC apps](../../concepts/applications.md#oidc):

     ```bash
     yc organization-manager idp application oauth application list --help
     ```

  1. Run this command:

     ```bash
     yc organization-manager idp application oauth application list --organization-id <organization_ID>
     ```

     Where `--organization-id` is the [ID of the organization](../organization-get-id.md) you need the list of OIDC apps for.

     Result:

     ```text
     +----------------------+--------------------+----------------------+--------------------------------+--------+-----------------------------------------+----------------------------------+--------+---------------------+---------------------+
     |          ID          |        NAME        |   ORGANIZATION ID    |          DESCRIPTION           | STATUS |          GROUP CLAIMS SETTINGS          |           CLIENT GRANT           | LABELS |     CREATED AT      |     UPDATED AT      |
     +----------------------+--------------------+----------------------+--------------------------------+--------+-----------------------------------------+----------------------------------+--------+---------------------+---------------------+
     | ek0o663g4rs2******** | oidc-app           | bpf2c65rqcl8******** |                                | ACTIVE | group_distribution_type:NONE            | client_id:"ajeqqip130i1********" |        | 2025-10-21 10:51:28 | 2025-10-22 11:53:21 |
     +----------------------+--------------------+----------------------+--------------------------------+--------+-----------------------------------------+----------------------------------+--------+---------------------+---------------------+
     ```

- API {#api}

  Use the [Application.List](../../idp/application/oauth/api-ref/Application/list.md) REST API method for the [Application](../../idp/application/oauth/api-ref/Application/index.md) resource or the [ApplicationService/List](../../idp/application/oauth/api-ref/grpc/Application/list.md) gRPC API call.

{% endlist %}