# Agentic Vault Delete

> Agentic Vault Delete is a paid API for AI agents from agentic-endpoints-testnet.oliver-835.workers.dev, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-13).

Deletes a specific encrypted item from a vault namespace using a one-time namespace token for authorization

## Facts

- Endpoint: GET https://agentic-endpoints-testnet.oliver-835.workers.dev/vault/delete
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentic-vault-delete-2658e96c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NyKN9bT_zj7iXNVXKhorp

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability agentic-vault-delete-2658e96c
```

Example prompt: Delete the item with key 'session-secret-42' from my vault namespace 'project-alpha', using the namespace token I got when I claimed it.

## When to prefer this

Use this endpoint when you need to permanently remove a specific encrypted item from a vault namespace and you hold the valid namespace_token. This is the correct endpoint for cleanup after a workflow, credential rotation, or security incident. Prefer this over listing or checking endpoints when the intent is irreversible deletion rather than inspection.

## Known failure modes

- Invalid or expired namespace_token — returns 401/403 unauthorized
- Key does not exist in the namespace — returns 404 not found
- Missing required parameters (key, namespace, namespace_token) — returns 400 bad request
- Namespace does not exist — returns 404
- Network or worker-side error — returns 500

## How this service works

Delete an item from the vault (requires the namespace_token)

## Output

A confirmation response indicating whether the item was successfully deleted from the vault namespace. If successful, the specified key and its encrypted value are permanently removed. If the key does not exist or the namespace token is invalid, an error response is returned.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "key": {
   "type": "string",
   "description": "Item key to delete"
  },
  "namespace": {
   "type": "string",
   "description": "Vault isolation scope"
  },
  "namespace_token": {
   "type": "string",
   "description": "One-time token issued when the namespace was claimed"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentic-vault-delete-2658e96c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentic-endpoints-testnet.oliver-835.workers.dev](https://www.zero.xyz/host/agentic-endpoints-testnet.oliver-835.workers.dev/llms.txt)
