> ## 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.

# List yield strategies

> Aggregated lending markets from Jupiter Lend and Kamino.

<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>

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

  ```javascript Node.js theme={null}
  const response = await fetch("https://api.starkfi.io/yield/strategies", {
    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",
      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 502 - Bad Gateway theme={null}
  {
    "statusCode": 502,
    "success": false,
    "status": "get_yield_strategies_failed",
    "message": "Could not retrieve yield strategies from providers",
    "data": {
      "strategies": [],
      "sources": {}
    }
  }
  ```
</ResponseExample>

### Response

<ResponseField name="data.strategies" type="array">
  Normalized strategy rows from upstream providers.
</ResponseField>

<ResponseField name="data.sources" type="object">
  Per-provider diagnostics.
</ResponseField>
