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

# Delete Ability

> Permanently delete one or more Abilities from your account.

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

<ParamField body="capability_ids" type="integer[]" required>
  The Ability IDs to delete. Pass a single ID to delete one Ability, or several to delete multiple in one call.
</ParamField>

<RequestExample>
  ```bash cURL theme={"system"}
  curl -X POST https://app.openhome.com/api/capabilities/delete-capability/ \
    -H "X-API-KEY: YOUR_KEY" \
    -H "Content-Type: application/json" \
    -d '{"capability_ids": [123]}'
  ```

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

  requests.post(
      "https://app.openhome.com/api/capabilities/delete-capability/",
      headers={"X-API-KEY": "YOUR_KEY"},
      json={"capability_ids": [123]},
  )
  ```
</RequestExample>
