# NetIntel Domain Vet

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

Accepts candidate domain names and returns a ranked recommendation with availability across TLDs, name quality scores, typosquat exposure, and brand-collision analysis.

## Facts

- Endpoint: POST https://netintel.dev/domain/vet
- Price: $0.2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/netintel-domain-vet-3109fef8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FeZDoRYAZeAhKaDJbhwHN

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-domain-vet-3109fef8 -d '<json body>'
```

Example prompt: I'm choosing between 'luminary.io', 'getluminary.com', and 'luminary.ai' for my AI productivity startup — can you vet all three, check their availability across .com, .io, and .ai, flag any typosquat or brand collision risks, and tell me which one I should register?

## When to prefer this

Use this endpoint when you need a single call to collapse the entire brand/domain selection funnel — availability check, name quality scoring, typosquat risk, and brand collision vetting all at once. Prefer it over a plain WHOIS or registrar availability check when you have multiple candidates and need a ranked recommendation rather than a binary available/taken answer. Ideal for agent workflows that need to pick a startup or product name without chaining multiple specialized tools.

## Known failure modes

- Empty or missing candidates array returns a validation error
- Invalid TLD strings may be ignored or return partial results
- Brand-collision data may be marked signals_unavailable if external sources are unreachable
- Rate limiting or payment failure (x402) returns 402 with payment details
- Very large candidate lists may time out or increase latency significantly

## How this service works

Vet and pick a domain in one call — give candidate names, get back a ranked verdict on which to use and whether it's safe to build on: availability across TLDs, name quality, typosquat exposure, and a factual brand-collision check against similar existing names. Collapses the pick-a-brand-name funnel into one call. Search terms: vet a domain, pick a brand name, check domain before building, choose startup name.

## Output

Returns a recommended domain from the candidates, an overall grade and numeric score, per-candidate findings objects with availability across requested TLDs, typosquat exposure details, brand-collision signals, any unavailable signals, warning flags, a unique run_id, and total duration_ms.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "type": "object",
     "properties": {
      "candidates": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "tlds": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "use_case": {
       "type": "string"
      },
      "deep_check_top_n": {
       "type": "number"
      }
     },
     "required": [
      "candidates"
     ]
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "recommended": {
       "type": "string"
      },
      "candidates": {
       "type": "array",
       "items": {
        "type": "object"
       }
      },
      "flags": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "signals_unavailable": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "run_id": {
       "type": "string"
      },
      "duration_ms": {
       "type": "number"
      },
      "score": {
       "type": "number"
      },
      "grade": {
       "type": "string"
      },
      "findings": {
       "type": "array",
       "items": {
        "type": "object"
       }
      }
     }
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "flags": [],
  "grade": "A",
  "score": 100,
  "run_id": "7c1e2f9a-4b6d-4a2e-9f83-1d5c7b0a2e64",
  "findings": [],
  "candidates": [
   {
    "name": "satsdesk",
    "verdict": "recommended",
    "appraisal": {
     "tier": "strong",
     "score": 87,
     "detail": "8 chars, pronounceable, no hyphens/numbers",
     "source": "domain-appraise"
    },
    "typosquat": {
     "risk": "low",
     "source": "typosquat",
     "available_defensive": 27,
     "registered_lookalikes": 3
    },
    "availability": {
     "score": 100,
     "taken": [],
     "source": "bulk-domain",
     "all_tlds_available": true,
     "brand_protected_registrar": false
    },
    "brand_collision": {
     "note": "Factual name-similarity signal only. Not a trademark search or legal clearance.",
     "source": "domain-vet",
     "available": true,
     "confidence": "high",
     "similar_to": [],
     "has_close_match": false
    },
    "preferred_domain": "satsdesk.com"
   }
  ],
  "duration_ms": 3400,
  "recommended": "satsdesk.com",
  "signals_unavailable": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/netintel-domain-vet-3109fef8/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)
