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

# Delete company

> Permanently delete a company and all associated data.

Permanently deletes a company and all its associated data from the system.

## Path parameters

<ParamField path="companyId" type="string" required>
  Unique identifier of the company to delete.
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE "https://api.cryptomate.me/management/companies/comp_6f1e2a30-4a3c-4b2e-9a1d-5e8c9b7a1f23" \
    -H "x-api-key: $CRYPTOMATE_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 404 Not Found theme={null}
  {
    "code": "NOT_FOUND",
    "message": "Company not found"
  }
  ```
</ResponseExample>
