# intel.halowerk.com Memory Entry Delete

> intel.halowerk.com Memory Entry Delete is a paid API for AI agents from intel.halowerk.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Deletes a single memory entry by ID, scoped strictly to the verified payer address.

## Facts

- Endpoint: DELETE https://intel.halowerk.com/v1/memory/:id
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/intel-halowerk-com-memory-entry-delete-e6e04e3a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HS0eJNBWxLTTzElWcQnm2

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 intel-halowerk-com-memory-entry-delete-e6e04e3a -d '<json body>'
```

Example prompt: Delete the memory entry with ID 'abc123xyz' from my intel.halowerk store — I no longer need that record.

## When to prefer this

Use this endpoint when you need to remove a single, specific memory entry by its ID from the intel.halowerk per-payer memory store. It is appropriate when performing targeted cleanup of individual records rather than bulk operations. Prefer this over broader data management approaches when you have a known entry ID and want precise, scoped deletion tied to the x402-verified payer identity.

## Known failure modes

- Entry ID not found or does not belong to the authenticated payer address — results in a 404 or authorization error
- Invalid or missing entry ID (empty string or exceeds 80 characters) — schema validation failure
- Payment failure via x402 protocol — entry is not deleted and an appropriate payment-required error is returned
- Network or server error — deletion may not complete; retry with idempotency in mind

## How this service works

Löscht nur einen Eintrag der verifizierten Zahleradresse. Die verifizierte Zahleradresse ist der Eigentümer; Ergebnisse und gespeicherte Daten sind strikt auf diesen Zahler begrenzt.

## Output

A confirmation response indicating the specified memory entry has been deleted. The deletion is scoped exclusively to the verified payer address, so no other payer's data can be affected.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "pathParams"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "id"
     ],
     "properties": {
      "id": {
       "type": "string",
       "maxLength": 80,
       "minLength": 1
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   },
   "additionalProperties": false
  }
 },
 "additionalProperties": false
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/intel-halowerk-com-memory-entry-delete-e6e04e3a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from intel.halowerk.com](https://www.zero.xyz/host/intel.halowerk.com/llms.txt)
