# intel.halowerk.com Memory Echo

> intel.halowerk.com Memory Echo 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).

Echoes submitted content back to the caller without storing it, using the verified payer address only for billing purposes.

## Facts

- Endpoint: POST https://intel.halowerk.com/v1/discover/memory
- 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-echo-af318fb8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nftzEwvcsywTb-ajzSQMe

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-echo-af318fb8 -d '<json body>'
```

Example prompt: Echo back this content for me without saving it — tag it as 'test' and 'draft' under the namespace 'my-agent-workspace', content: 'This is a test memory entry to validate the pipeline.' Just confirm you get it back unchanged.

## When to prefer this

Choose this endpoint when you need to validate that a content payload, namespace, and tag configuration will be accepted by the halowerk system before committing to actual storage. It is ideal for integration tests, pipeline health checks, and dry-run scenarios where persistence is explicitly unwanted. Prefer alternatives on this provider when you actually intend to store, search, or retrieve memory entries.

## Known failure modes

- Content too short (below minLength of 1) or too long (above maxLength of 4000) returns a validation error
- More than 20 tags or a tag exceeding 40 characters causes rejection
- Namespace exceeding 80 characters is rejected
- Payment verification failure via x402 prevents the call from completing
- Missing or malformed content field results in a schema validation error

## How this service works

Gibt den geprüften Inhalt als Echo zurück und speichert nichts. Die verifizierte Zahleradresse wird nur für die Abrechnung verwendet.

## Output

Returns the submitted content as an echo in the response body, confirming the payload was received and processed. No data is persisted. The verified payer address is used solely for $0.001 USDC billing via the x402 protocol.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "tags": {
   "type": "array",
   "items": {
    "type": "string",
    "maxLength": 40
   },
   "maxItems": 20
  },
  "content": {
   "type": "string",
   "maxLength": 4000,
   "minLength": 1
  },
  "namespace": {
   "type": "string",
   "maxLength": 80
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/intel-halowerk-com-memory-echo-af318fb8/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)
