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

# Delete one object

> Delete a single CDN object by path.

Delete one object from FiveMesh CDN.

Requires `cdn:delete`.

<ParamField header="Idempotency-Key" type="string">
  Optional key used to replay the same successful delete response after a retry.
</ParamField>

<ParamField query="path" type="string" required>
  Object path to delete.
</ParamField>

```bash theme={null}
curl -X DELETE "https://api.fivemesh.io/v1/objects?path=screenshots/a.png" \
  -H "Authorization: Bearer $FIVEMESH_API_KEY" \
  -H "Idempotency-Key: delete-screenshot-001"
```

```json theme={null}
{
  "success": true,
  "key": "screenshots/a.png",
  "status": "deleted",
  "requestId": "req_..."
}
```

If the object is already gone, the API may return `status: "not_found"`.
