# NetIntel Name Generator & Domain Availability Checker

> NetIntel Name Generator & Domain Availability Checker is a paid API for AI agents from netintel.dev, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Generates brandable domain name suggestions from a seed keyword and checks their availability for a given TLD

## Facts

- Endpoint: GET https://netintel.dev/name-gen/suggest
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/netintel-name-generator-domain-availability-checker-a9f4171f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fpW-1mxm0BTNgh2i81Uky

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-name-generator-domain-availability-checker-a9f4171f
```

Example prompt: Can you suggest up to 30 available .com domain names based on the keyword 'spark' and tell me which ones are most brandable?

## When to prefer this

Choose this endpoint when you need to brainstorm and immediately validate domain name availability for a given keyword concept, especially when you want brandability scoring and pattern-based suggestions (prefix, suffix, compound) in a single call. Prefer over manual WHOIS lookups or separate name-generation and availability-checking tools.

## Known failure modes

- Missing required 'keyword' parameter returns 400 error
- Keyword shorter than 2 or longer than 20 characters is rejected
- Limit exceeding 40 is clamped or rejected
- Invalid TLD format may return no results or error
- Payment failure via x402 returns 402 with payment details
- Rate limiting if too many requests are made rapidly

## How this service works

Generate brandable startup/product names from a keyword using prefixes, suffixes, blends, and phonetic patterns, then check .com (or any TLD) availability for each via DNS — returns available names ranked by a brandability heuristic so agents can find a claimable brand without manual brainstorming plus one-by-one availability checks.

## Output

Returns a list of generated domain name suggestions with their availability status, brandability score, pattern type (prefix/suffix/etc.), a grade and overall score for the batch, the count of available vs generated names, and a curated top_available list of the best available domains.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "keyword"
     ],
     "properties": {
      "tld": {
       "type": "string",
       "description": "TLD to check availability against (default: com)"
      },
      "limit": {
       "type": "number",
       "description": "Max names to generate and check (default: 25, max: 40)"
      },
      "keyword": {
       "type": "string",
       "description": "Seed keyword to generate names from (2-20 alphanumeric chars, e.g. cloud)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "tld": {
       "type": "string"
      },
      "grade": {
       "type": "string"
      },
      "score": {
       "type": "number"
      },
      "keyword": {
       "type": "string"
      },
      "findings": {
       "type": "array",
       "items": {
        "type": "object"
       }
      },
      "suggestions": {
       "type": "array",
       "items": {
        "type": "object"
       }
      },
      "top_available": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "available_count": {
       "type": "number"
      },
      "generated_count": {
       "type": "number"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "tld": "com",
  "grade": "B",
  "score": 75,
  "keyword": "cloud",
  "findings": [],
  "suggestions": [
   {
    "name": "cloudly",
    "domain": "cloudly.com",
    "pattern": "suffix",
    "available": true,
    "brandability": 90
   },
   {
    "name": "getcloud",
    "domain": "getcloud.com",
    "pattern": "prefix",
    "available": false,
    "brandability": 80
   }
  ],
  "top_available": [
   "cloudly.com",
   "cloudkit.com",
   "cloudflow.com"
  ],
  "available_count": 9,
  "generated_count": 25
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/netintel-name-generator-domain-availability-checker-a9f4171f/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)
