---
title: "Get a list of all applications for a project."
method: GET
path: "/api/admin/projects/{projectId}/applications"
tags: ["Projects"]
---

# Get a list of all applications for a project.

`GET /api/admin/projects/{projectId}/applications`

This endpoint returns an list of all the applications for a project.

## Path parameters

- `projectId` string, required

## Query parameters

- `query` string
- `offset` string
- `limit` string
- `sortBy` string
- `sortOrder` string

## Response `200`

projectApplicationsSchema

- ProjectApplicationsSchema — A list of project applications
  - `total` integer, required — The total number of project applications.
  - `applications` ProjectApplicationSchema[], required — All applications defined for a specific project.
    - `name` string, required — Name of the application that is using the SDK. This is the same as the appName in the SDK configuration.
    - `environments` string[], required — The environments that the application is using. This is the same as the environment in the SDK configuration.
    - `instances` string[], required — The instances of the application that are using the SDK.
    - `sdks` ProjectApplicationSdkSchema[], required — The SDKs that the application is using.
      - `name` string, required — Name of the SDK package that the application is using.
      - `versions` string[], required — The versions of the SDK that the application is using.

## Other responses

- `401` — Authorization information is missing or invalid. Provide a valid API token as the `authorization` header, e.g. `authorization:*.*.my-admin-token`.
- `403` — The provided user credentials are valid, but the user does not have the necessary permissions to perform this operation
- `404` — The requested resource was not found.

---

[API](https://skmtc.net/unleash/apis/unleash-api-3.md) · [All operations](https://skmtc.net/unleash/apis/unleash-api-3/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/unleash/unleash-api-3/versions/b2c3116e633e/schema)
