Skip to main content

Get a list of all projects.

GET <your-unleash-url>/api/admin/projects

Authorization

name: Authorizationtype: apiKeyin: headerdescription: API key needed to access this API

This endpoint returns an list of all the projects in the Unleash instance.

Request

Responses

projectsSchema

Schema
  • version integer required

    The schema version used to represent the project data.

  • projects object[]required

    A list of projects in the Unleash instance

  • Array [
  • id string required

    The id of this project

  • name string required

    The name of this project

  • description string nullable

    Additional information about the project

  • health number

    An indicator of the project's health on a scale from 0 to 100

  • featureCount number

    The number of features this project has

  • staleFeatureCount number

    The number of stale features this project has

  • potentiallyStaleFeatureCount number

    The number of potentially stale features this project has

  • memberCount number

    The number of members this project has

  • createdAt date-time

    When this project was created.

  • updatedAt date-time nullable

    When this project was last updated.

  • favorite boolean

    true if the project was favorited, otherwise false.

  • mode string

    Possible values: [open, protected, private]

    The project's collaboration mode. Determines whether non-project members can submit change requests or not.

  • defaultStickiness string

    A default stickiness for the project affecting the default stickiness value for variants and Gradual Rollout strategy

  • avgTimeToProduction number

    The average time from when a feature was created to when it was enabled in the "production" environment during the current window

  • ]

Authorization

name: Authorizationtype: apiKeyin: headerdescription: API key needed to access this API

Request

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