---
title: "Get all strategies"
method: GET
path: "/api/admin/strategies"
tags: ["Strategies"]
---

# Get all strategies

`GET /api/admin/strategies`

Retrieves all strategy types ([predefined](https://docs.getunleash.io/concepts/activation-strategies "predefined strategies") and [custom strategies](https://docs.getunleash.io/concepts/activation-strategies#custom-strategies)) that are defined on this Unleash instance.

## Response `200`

strategiesSchema

- StrategiesSchema — List of strategies
  - `version` 1, required — Version of the strategies schema
  - `strategies` StrategySchema[], required — List of strategies
    - `title` string, nullable — An optional title for the strategy
    - `name` string, required — The name (type) of the strategy
    - `displayName` string, nullable, required — A human friendly name for the strategy
    - `description` string, nullable, required — A short description of the strategy
    - `editable` boolean, required — Whether the strategy can be edited or not. Strategies bundled with Unleash cannot be edited.
    - `deprecated` boolean, required
    - `parameters` object[], required — A list of relevant parameters for each strategy
      - `name` string
      - `type` string
      - `description` string
      - `required` boolean

## Other responses

- `401` — Authorization information is missing or invalid. Provide a valid API token as the `authorization` header, e.g. `authorization:*.*.my-admin-token`.

---

[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/revisions/b2c3116e633e/schema)
