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

# List Installed Abilities

> Returns the Abilities currently installed on the authenticated account.

<ParamField header="X-API-KEY" type="string" required>
  Your OpenHome API key.
</ParamField>

<RequestExample>
  ```bash cURL theme={"system"}
  curl https://app.openhome.com/api/capabilities/get-installed-capabilities/ \
    -H "X-API-KEY: YOUR_KEY"
  ```

  ```python Python theme={"system"}
  import requests

  requests.get(
      "https://app.openhome.com/api/capabilities/get-installed-capabilities/",
      headers={"X-API-KEY": "YOUR_KEY"},
  )
  ```
</RequestExample>
