> ## Documentation Index
> Fetch the complete documentation index at: https://docs.starkfi.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Get yield strategies by symbol

> Filter aggregated strategies for a single token symbol (case-insensitive).

<ParamField header="x-api-key" type="string" required placeholder="your-api-key">
  Your StarkFi API key. You can find it in your [dashboard](https://app.starkfi.io).
</ParamField>

<ParamField path="symbol" type="string" required>
  Token symbol, e.g. `USDC`.
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl --request GET \
    --url https://api.starkfi.io/yield/strategies/USDC \
    --header 'x-api-key: <api_key>'
  ```

  ```javascript Node.js theme={null}
  const response = await fetch("https://api.starkfi.io/yield/strategies/USDC", {
    headers: { "x-api-key": "<api_key>" },
  });
  const data = await response.json();
  ```

  ```python Python theme={null}
  import requests

  response = requests.get(
      "https://api.starkfi.io/yield/strategies/USDC",
      headers={"x-api-key": "<api_key>"},
  )
  data = response.json()
  ```
</RequestExample>

<ResponseExample>
  ```json 200 - Success theme={null}
  {
    "statusCode": 200,
    "success": true,
    "status": "get_yield_strategies_ok",
    "message": "Yield strategies retrieved successfully",
    "data": {
      "strategies": [],
      "sources": {}
    }
  }
  ```

  ```json 404 - Not Found theme={null}
  {
    "statusCode": 404,
    "success": false,
    "status": "yield_strategy_not_found",
    "message": "Yield strategy not found"
  }
  ```
</ResponseExample>

### Response

<ResponseField name="data.strategies" type="array" required>
  Non-empty when `success` is `true`.
</ResponseField>

<ResponseField name="data.sources" type="object" />
