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

# Delete Web Source

> Delete a web source and its associated embeddings.

## Endpoint

```
DELETE /web-sources/{id}
```

## Authentication

Required.

## Path parameters

<ParamField path="id" type="string" required>
  The web source ID.
</ParamField>

## Response

<ResponseField name="success" type="boolean" />

## Example

```bash theme={null}
curl -X DELETE https://api.mind-e.co/web-sources/ws-id-here \
  -H "Authorization: Bearer sk_live_your_key_here"
```

```json theme={null}
{
  "success": true
}
```

<Warning>
  This permanently deletes the web source and removes its embeddings from the agent's knowledge base. This action cannot be undone.
</Warning>
