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

# Remove entries

> Removes values from a dataset.

Removes values from a dataset. Non-existent values are silently ignored. Changes take effect immediately — no redeploy needed.

**Path parameters:**

| Parameter    | Description |
| :----------- | :---------- |
| `dataset_id` | Dataset ID  |

**Request body:**

```json theme={null}
{
  "values": ["0x3c499c542cef5e3811e1192ce70d8cc03d5c3359"]
}
```

| Field    | Required | Description                      |
| :------- | :------- | :------------------------------- |
| `values` | Yes      | Array of string values to remove |

```bash theme={null}
curl -X DELETE https://api.allium.so/api/v1/beam/datasets/${DATASET_ID}/entries \
  -H "X-API-Key: ${ALLIUM_API_KEY}" \
  -H "Content-Type: application/json" \
  -d '{ "values": ["0x3c499c542cef5e3811e1192ce70d8cc03d5c3359"] }'
```

**Response:**

```json theme={null}
{ "count": 1 }
```
