ToolAssay

Parse and normalize a freeform address string using Claude Haiku — splits it int

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.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
915 msmedian answer time
$0.01listed price per call
$0.01price it asked us

Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.

Endpoint

POST https://netintel.dev/extract/address

CategoryCode and developer
Provider hostnetintel.dev
Networkseip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp
Payment schemesexact
Self-reported calls, 30 days1 from 1 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.01 915 ms

Example input (from the provider)

{
  "body": {
    "address": "123 Main St, San Francisco, CA 94105, USA"
  },
  "bodyType": "json",
  "method": "POST",
  "type": "http"
}

Promised output schema (from the provider)

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

This page as JSON