---
title: "Get all applications"
method: GET
path: "/api/admin/metrics/applications"
tags: ["Metrics"]
---

# Get all applications

`GET /api/admin/metrics/applications`

Returns all applications registered with Unleash. Applications can be created via metrics reporting or manual creation

## Query parameters

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

## Response `200`

applicationsSchema

- ApplicationsSchema — An object containing a list of applications that have connected to Unleash via an SDK.
  - `total` integer, required — The total number of project applications.
  - `applications` ApplicationSchema[], required — The list of applications that have connected to this Unleash instance.
    - `appName` string, required — Name of the application
    - `sdkVersion` string — Which SDK and version the application reporting uses. Typically represented as `<identifier>:<version>`
    - `strategies` string[] — Which [strategies](https://docs.getunleash.io/concepts#activation-strategies) the application has loaded. Useful when trying to figure out if your [custom strategy](https://docs.getunleash.io/concepts/activation-strategies#custom-strategies) has been loaded in the SDK
    - `description` string — Extra information added about the application reporting the metrics. Only present if added via the Unleash Admin interface
    - `url` string — A link to reference the application reporting the metrics. Could for instance be a GitHub link to the repository of the application
    - `color` string — The CSS color that is used to color the application's entry in the application list
    - `icon` string — An URL to an icon file to be used for the applications's entry in the application list
    - `usage` ApplicationUsageSchema[] — The list of projects the application has been using.
      - `project` string, required — Name of the project
      - `environments` string[], required — Which environments have been accessed in this project.

---

[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)
