# Halowerk Intel Memory Export

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

Exports all non-expired memory entries belonging to the authenticated (paying) address as JSON Lines.

## Facts

- Endpoint: GET https://intel.halowerk.com/v1/memory/export
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/halowerk-intel-memory-export-c9cd78cc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_grJvTfBMJYWgQQd27ZLc2

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 halowerk-intel-memory-export-c9cd78cc
```

Example prompt: Export all of my non-expired memory entries from my Halowerk Intel account as a JSON Lines dump — I want everything currently stored under my address.

## When to prefer this

Choose this endpoint when you need a complete bulk export of all non-expired memory entries for a given payer address, rather than searching or filtering specific records. It is the right choice for backups, audits, cache synchronization, or any workflow requiring the full dataset at once. Prefer the search or filter sibling endpoints if you only need a subset of records.

## Known failure modes

- Payment failure or invalid x402 payment header — returns 402 Payment Required
- No entries found for the address — returns empty JSON Lines body
- Expired authentication or unrecognized payer address — returns 401 or 403
- Network or server error — returns 5xx status
- Malformed request method (non-GET) — returns 405 Method Not Allowed

## How this service works

Ein bezahlter Aufruf liefert alle nicht abgelaufenen Einträge des Zahlers als JSON-Lines. Die verifizierte Zahleradresse ist der Eigentümer; Ergebnisse und gespeicherte Daten sind strikt auf diesen Zahler begrenzt.

## Output

A JSON Lines document where each line is a JSON object representing one non-expired memory entry owned by the paying address. Fields typically include entry identifiers, stored content, timestamps, and expiry information. Results are strictly scoped to the verified payer's address.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    }
   },
   "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/halowerk-intel-memory-export-c9cd78cc/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)
