Skip to main content

Get all applications

GET <your-unleash-url>/api/admin/metrics/applications

Authorization

name: Authorizationtype: apiKeyin: header

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

Request

Responses

applicationsSchema

Schema
  • applications object[]

    The list of applications that have connected to this Unleash instance.

  • Array [
  • 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 the application has loaded. Useful when trying to figure out if your custom strategy 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 object[]

    The list of projects the application has been using.

  • Array [
  • project string required

    Name of the project

  • environments string[] required

    Which environments have been accessed in this project.

  • ]
  • ]

Authorization

name: Authorizationtype: apiKeyin: header

Request

Base URL
<your-unleash-url>
apiKey
curl / cURL
curl -L -X GET '<your-unleash-url>/api/admin/metrics/applications' \
-H 'Accept: application/json' \
-H 'Authorization: <API_KEY_VALUE>'