v7

latestOpenAPI 3.0.3raw.githubusercontent.com2026-08-013764062.2 MB
Projects

Get a list of all applications for a project.

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

get/api/admin/projects/{projectId}/applications

Path parameters

projectIdstring required

Query parameters

querystring
Example:first_app

The search query for the application name, sdk, environment

offsetstring
Example:50

The number of applications to skip when returning a page. By default it is set to 0.

limitstring
Example:50

The number of applications to return in a page. By default it is set to 50.

sortBystring
Example:type

The field to sort the results by. By default it is set to "appName".

sortOrderstring
Example:desc

The sort order for the sortBy. By default it is det to "asc".

Response

projectApplicationsSchema

totalinteger required

The total number of project applications.

Example response

{
  "total": 50,
  "applications": [
    {
      "environments": [
        "development",
        "production"
      ],
      "instances": [
        "prod-b4ca",
        "prod-ac8a"
      ],
      "sdks": [
        {
          "name": "unleash-client-node",
          "versions": [
            "4.1.1"
          ]
        }
      ]
    }
  ]
}