# NetIntel Address Extractor

> NetIntel Address Extractor is a paid API for AI agents from netintel.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Parses, normalizes, and validates a postal address string, returning structured components, a completeness grade, and quality score.

## Facts

- Endpoint: POST https://netintel.dev/extract/address
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/netintel-address-extractor-561779a7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lwT_xQX-gdjOH-2HnbA-R

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 netintel-address-extractor-561779a7 -d '<json body>'
```

Example prompt: Can you extract and normalize this address for me — '123 Main St, San Francisco, CA 94105' — and tell me if it's complete and what grade it gets?

## When to prefer this

Choose this endpoint when you need to parse, normalize, and quality-score a single postal address string into structured components — especially for data cleansing pipelines, shipping form validation, or pre-geocoding address standardization. It is distinct from geocoding (no lat/lng returned) and is best when address structure and completeness are the primary concern.

## Known failure modes

- Malformed or unparseable address string returns low score with missing components
- Missing required address field causes is_complete: false with findings listing gaps
- Empty or null input body returns 400-level error
- Address in unsupported country or format may return partial components only
- Payment failure via x402 (insufficient USDC balance) returns 402 Payment Required

## How this service works

Parse and normalize a freeform address string using Claude Haiku — splits it into street, city, state/region, postal code, and country, plus a normalized single-line form, so agents can clean and standardize messy address data for shipping, CRM, and verification workflows.

## Output

A JSON object containing a letter grade (e.g. 'A'), a numeric score (0–100), a boolean indicating if the address is complete, a 'components_found' count, a normalized address string, and structured fields for street, city, state/region, postal code, country, and country code, plus an array of any findings or issues detected.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string",
       "description": "The freeform address string to parse and normalize. Max 10000 words or 50KB."
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "grade": {
       "type": "string",
       "description": "Letter grade A-F"
      },
      "score": {
       "type": "number",
       "description": "Quality score 0-100"
      },
      "cached": {
       "type": "boolean",
       "description": "True if served from the in-memory cache."
      },
      "address": {
       "type": "object",
       "description": "Parsed components: street, city, state_region, postal_code, country, country_code (ISO 3166-1 alpha-2), and a normalized single-line form. Missing components are null."
      },
      "findings": {
       "type": "array",
       "items": {
        "type": "string"
       },
       "description": "Informational findings (e.g. incomplete_address, no_components)."
      },
      "is_complete": {
       "type": "boolean",
       "description": "True when street, city, and country are all present."
      },
      "components_found": {
       "type": "number",
       "description": "Count of non-null core components (street, city, state_region, postal_code, country)."
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "grade": "A",
  "score": 100,
  "cached": false,
  "address": {
   "city": "San Francisco",
   "street": "123 Main St",
   "country": "United States",
   "normalized": "123 Main St, San Francisco, CA 94105, United States",
   "postal_code": "94105",
   "country_code": "US",
   "state_region": "CA"
  },
  "findings": [],
  "is_complete": true,
  "components_found": 5
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/netintel-address-extractor-561779a7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from netintel.dev](https://www.zero.xyz/host/netintel.dev/llms.txt)
