# Halowerk Intel Address Label Discovery

> Halowerk Intel Address Label Discovery 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).

Looks up blockchain address labels, names, categories, sources, and confidence scores for a given wallet address, scoped to the authenticated paying address.

## Facts

- Endpoint: GET https://intel.halowerk.com/v1/discover/intel/labels/:address
- 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/halowerk-intel-address-label-discovery-6a288501
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tW6aysTolvXJxDn0UmJtY

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-address-label-discovery-6a288501
```

Example prompt: Can you look up the labels and identity information for the blockchain address 0x3f5CE5FBFe3E9af3971dD833D26bA9b5C936f0bE — I want to know what category it falls into and how confident the data is?

## When to prefer this

Choose this endpoint when you need to resolve the identity or classification of a specific blockchain address and want confidence scores and source attribution alongside the label. It is particularly useful for on-chain due diligence, transaction enrichment, or compliance workflows where you need to know whether an address belongs to a known exchange, protocol, or entity. Unlike generic blockchain explorers, results are private and scoped to your paying address.

## Known failure modes

- Address not found or unlabeled — returns empty result set
- Invalid address format — request rejected with error
- Payment verification failure — result withheld until payment confirmed
- Rate limiting or quota exceeded for the paying address
- Address exists but has no known labels in the database

## How this service works

Identischer Alias der Adressklassifikation für x402-Discovery. Die verifizierte Zahleradresse ist der Eigentümer; Ergebnisse und gespeicherte Daten sind strikt auf diesen Zahler begrenzt.

## Output

Returns occupied labels, names, categories, data sources, and confidence scores associated with the queried blockchain address. Results are strictly scoped to the authenticated paying wallet address and may include custom labels alongside aggregated third-party data.

## 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": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string",
       "maxLength": 44,
       "minLength": 32,
       "description": "Adresse auf der angegebenen unterstützten Kette."
      }
     },
     "additionalProperties": false
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "chain": {
       "enum": [
        "base",
        "ethereum",
        "polygon",
        "arbitrum",
        "solana"
       ],
       "type": "string",
       "default": "base"
      }
     },
     "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/halowerk-intel-address-label-discovery-6a288501/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)
