# NetIntel Contact Extractor

> NetIntel Contact Extractor is a paid API for AI agents from netintel-production-440c.up.railway.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Extracts structured contact information (name, email, phone, title, address, company) from a given target and returns a scored, graded result

## Facts

- Endpoint: POST https://netintel-production-440c.up.railway.app/extract/contact
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/netintel-contact-extractor-836fed37
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Lnd-LkLjmBJ8A657ALgz8

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-contact-extractor-836fed37 -d '<json body>'
```

Example prompt: Extract the contact information for acme.com — I need the name, email, phone number, job title, and mailing address of whoever is the main contact there, and tell me how complete the result is.

## When to prefer this

Choose this endpoint when you need structured, scored contact data extracted from a specific domain or webpage and want a quality grade alongside the result. It is particularly useful for lead enrichment, sales prospecting, or verifying business contact details at $0.05 per call via automatic micropayment.

## Known failure modes

- Target has no publicly accessible contact information — returns empty contact fields and a low score
- Invalid or unreachable URL/domain — returns an error or zero-score result
- Payment not provided or insufficient — returns HTTP 402 requiring USDC micropayment on Base mainnet
- Rate limiting or network timeout — returns a server-side error
- Cached result returned when fresh data expected — cached flag will be true

## How this service works

Extract structured contact details from text, an email signature, or webpage text using Claude Haiku — returns name, title, company, email, phone, and address as clean JSON so agents can turn unstructured contact blocks into CRM-ready records in one call.

## Output

A JSON object containing a letter grade (e.g. 'A') and numeric score (0–100) reflecting data completeness, a contact object with name, email, phone, title, address, and company fields, a list of findings or issues, the number of fields found, and a flag indicating whether the result was served from cache.

## 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": [
      "text"
     ],
     "properties": {
      "text": {
       "type": "string",
       "description": "The text to extract contact details from — free text, an email signature, or webpage text. 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."
      },
      "contact": {
       "type": "object",
       "description": "Parsed contact fields: name, title, company, email, phone, address. Missing fields are null."
      },
      "findings": {
       "type": "array",
       "items": {
        "type": "string"
       },
       "description": "Informational findings (e.g. no_fields_found)."
      },
      "fields_found": {
       "type": "number",
       "description": "Count of non-null contact fields."
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "grade": "A",
  "score": 100,
  "cached": false,
  "contact": {
   "name": "Jane Doe",
   "email": "jane@acme.com",
   "phone": "+1 555 867 5309",
   "title": "VP of Engineering",
   "address": "123 Main St, San Francisco, CA 94105",
   "company": "Acme Corp"
  },
  "findings": [],
  "fields_found": 6
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/netintel-contact-extractor-836fed37/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from netintel-production-440c.up.railway.app](https://www.zero.xyz/host/netintel-production-440c.up.railway.app/llms.txt)
