# intel.halowerk.com Label Storage

> intel.halowerk.com Label Storage 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).

Stores up to ten custom labels for a blockchain address within the paying wallet's private namespace

## Facts

- Endpoint: POST https://intel.halowerk.com/v1/intel/labels
- 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-label-storage-a8ec5301
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4tU5hCUTlJbNmprYFTGH5

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-label-storage-a8ec5301 -d '<json body>'
```

Example prompt: Save the labels 'exchange', 'hot-wallet', and 'high-risk' for the Base address 0xAbCd1234...5678 in my private namespace.

## When to prefer this

Use this endpoint when you need to privately annotate blockchain addresses with your own custom labels that are isolated from other users. It is ideal for building private intelligence databases, tagging counterparties, or enriching address records with human-readable metadata scoped to your own paying wallet identity. Prefer this over public labeling or read endpoints when the goal is to write new label data.

## Known failure modes

- More than 10 labels submitted — rejected with validation error
- Label string exceeds 40 characters — rejected with validation error
- Unsupported chain specified — rejected with enum validation error
- Address string outside 32–44 character range — rejected with validation error
- Payment not completed or verified — access denied
- Labels array empty — rejected with minItems constraint

## How this service works

Speichert höchstens zehn Labels ausschließlich im Namensraum des Zahlers. Die verifizierte Zahleradresse ist der Eigentümer; Ergebnisse und gespeicherte Daten sind strikt auf diesen Zahler begrenzt.

## Output

Returns confirmation that up to 10 labels have been stored against the specified blockchain address, scoped exclusively to the paying wallet's namespace. The stored data is private and only accessible by the same paying address.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "chain": {
   "enum": [
    "base",
    "ethereum",
    "polygon",
    "arbitrum",
    "solana"
   ],
   "type": "string",
   "default": "base"
  },
  "labels": {
   "type": "array",
   "items": {
    "type": "string",
    "maxLength": 40,
    "minLength": 1
   },
   "maxItems": 10,
   "minItems": 1
  },
  "address": {
   "type": "string",
   "maxLength": 44,
   "minLength": 32,
   "description": "Adresse auf der angegebenen unterstützten Kette."
  }
 }
}
```

## More

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