> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.getunleash.io/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.getunleash.io/_mcp/server.

# Get strategies that reference segment

GET https://app.unleash-instance.example.com/api/admin/segments/{id}/strategies

Retrieve all strategies that reference the specified segment.

Reference: https://docs.getunleash.io/api/get-strategies-by-segment-id

## Authentication

- `Authorization` header (required) — API key needed to access this API
- `Authorization` header (bearer token, required) — API key needed to access this API, in Bearer token format

## Request

### Path parameters

- `id` (integer, required) — a segment id

## Response

### 200

segmentStrategiesSchema

- `strategies` (list of object, required) — The list of strategies
  - `id` (string, required) — The ID of the strategy
  - `featureName` (string, required) — The name of the feature flag that this strategy belongs to.
  - `projectId` (string, required) — The ID of the project that the strategy belongs to.
  - `environment` (string, required) — The ID of the environment that the strategy belongs to.
  - `strategyName` (string, required) — The name of the strategy's type.
- `changeRequestStrategies` (list of object, optional) — A list of strategies that use this segment in active change requests.
  - `featureName` (string, required) — The name of the feature flag that this strategy belongs to.
  - `projectId` (string, required) — The ID of the project that the strategy belongs to.
  - `environment` (string, required) — The ID of the environment that the strategy belongs to.
  - `strategyName` (string, required) — The name of the strategy's type.
  - `id` (string, optional) — The ID of the strategy. Not present on new strategies that haven't been added to the feature flag yet.

## Examples

**Response**

```json
{
  "strategies": [
    {
      "id": "e465c813-cffb-4232-b184-82b1d6fe9d3d",
      "featureName": "new-signup-flow",
      "projectId": "red-vista",
      "environment": "development",
      "strategyName": "flexibleRollout"
    }
  ],
  "changeRequestStrategies": [
    {
      "featureName": "new-signup-flow",
      "projectId": "red-vista",
      "environment": "development",
      "strategyName": "flexibleRollout",
      "id": "e465c813-cffb-4232-b184-82b1d6fe9d3d"
    }
  ]
}
```

**SDK Code**

```python
import requests

url = "https://app.unleash-instance.example.com/api/admin/segments/1/strategies"

headers = {"Authorization": "<apiKey>"}

response = requests.get(url, headers=headers)

print(response.json())
```

```javascript
const url = 'https://app.unleash-instance.example.com/api/admin/segments/1/strategies';
const options = {method: 'GET', headers: {Authorization: '<apiKey>'}};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "https://app.unleash-instance.example.com/api/admin/segments/1/strategies"

	req, _ := http.NewRequest("GET", url, nil)

	req.Header.Add("Authorization", "<apiKey>")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby
require 'uri'
require 'net/http'

url = URI("https://app.unleash-instance.example.com/api/admin/segments/1/strategies")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = '<apiKey>'

response = http.request(request)
puts response.read_body
```

```java
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://app.unleash-instance.example.com/api/admin/segments/1/strategies")
  .header("Authorization", "<apiKey>")
  .asString();
```

```php
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://app.unleash-instance.example.com/api/admin/segments/1/strategies', [
  'headers' => [
    'Authorization' => '<apiKey>',
  ],
]);

echo $response->getBody();
```

```csharp
using RestSharp;

var client = new RestClient("https://app.unleash-instance.example.com/api/admin/segments/1/strategies");
var request = new RestRequest(Method.GET);
request.AddHeader("Authorization", "<apiKey>");
IRestResponse response = client.Execute(request);
```

```swift
import Foundation

let headers = ["Authorization": "<apiKey>"]

let request = NSMutableURLRequest(url: NSURL(string: "https://app.unleash-instance.example.com/api/admin/segments/1/strategies")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"
request.allHTTPHeaderFields = headers

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```