# NetIntel Bulk Domain Availability Check

> NetIntel Bulk Domain Availability Check is a paid API for AI agents from netintel.dev, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15, last successful call 2026-07-22).

Checks availability and registration status for multiple domain name combinations (names × TLDs) in a single call, returning a graded report with registrar info and expiry dates.

## Facts

- Endpoint: POST https://netintel.dev/bulk-domain/check
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Last successful call: 2026-07-22
- Success rate: 100% of calls made through Zero
- Rating: 5.0 / 5 from 1 review
- Activations on Zero: 1
- Tags: x402
- Canonical page: https://www.zero.xyz/c/netintel-bulk-domain-availability-check-0a16e4f3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_X7X0_lIz6MkxzKPJkxlkl

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-bulk-domain-availability-check-0a16e4f3 -d '<json body>'
```

Example prompt: Check availability for the names 'acme', 'acmehq', and 'acmepro' across .com, .io, and .net — I want to know which combinations are available, who owns the taken ones, and when they expire.

## When to prefer this

Use this endpoint when you need to evaluate multiple domain name candidates and TLD combinations in a single call rather than checking one domain at a time. It is ideal for brand naming research, startup domain discovery, or pre-launch domain strategy where you want a graded summary with registrar and expiry metadata across many combinations simultaneously.

## Known failure modes

- Invalid or malformed domain names in request body — returns 400 error
- No domain names or TLDs provided — returns 400 validation error
- Payment not included or insufficient USDC — returns 402 Payment Required
- Too many name/TLD combinations exceeding endpoint limits — returns 429 or 400
- WHOIS/registry lookup timeout for a specific TLD — partial results or error entry for that domain
- Rate limiting if called too rapidly in succession

## How this service works

Check availability of many domain names across multiple TLDs in a single call — submit up to 50 name/TLD combinations and get back per-domain registration status, registrar, and expiry concurrently, so agents can scan an entire naming shortlist or brand portfolio in one request instead of dozens. Caveat: when both RDAP and DNS are unreachable, status reads 'available' — re-check surprising availables on premium names.

## Output

A JSON object containing an overall availability grade (A–F) and score (0–100), a results array with per-domain status (registered/available), registrar name, expiry date, days until expiry, counts of taken vs. available domains, a list of names available across all checked TLDs, and findings with deductions explaining the grade.

## 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": [
      "names"
     ],
     "properties": {
      "tlds": {
       "type": "array",
       "items": {
        "type": "string"
       },
       "description": "TLDs to check, with or without leading dot (default: [\".com\",\".net\",\".org\",\".io\",\".co\"]). Total names × tlds must not exceed 50."
      },
      "names": {
       "type": "array",
       "items": {
        "type": "string"
       },
       "description": "1-50 domain names to check (alphanumeric + hyphens, 2-63 chars each), e.g. [\"acme\", \"acmehq\"]"
      }
     }
    },
    "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"
      },
      "score": {
       "type": "number"
      },
      "results": {
       "type": "array",
       "items": {
        "type": "object"
       }
      },
      "findings": {
       "type": "array",
       "items": {
        "type": "object"
       }
      },
      "taken_count": {
       "type": "number"
      },
      "total_checked": {
       "type": "number"
      },
      "available_count": {
       "type": "number"
      },
      "names_available_all_tlds": {
       "type": "array",
       "items": {
        "type": "string"
       }
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "grade": "C",
  "score": 65,
  "results": [
   {
    "tld": "com",
    "name": "acme",
    "domain": "acme.com",
    "status": "registered",
    "available": false,
    "registrar": "GoDaddy LLC",
    "expires_at": "2025-06-01T00:00:00Z",
    "days_until_expiry": 79
   },
   {
    "tld": "io",
    "name": "acmehq",
    "domain": "acmehq.io",
    "status": "available",
    "available": true,
    "registrar": null,
    "expires_at": null,
    "days_until_expiry": null
   }
  ],
  "findings": [
   {
    "rule": "low_availability",
    "detail": "Only 2 of 6 combinations available",
    "deduction": -35
   }
  ],
  "taken_count": 4,
  "total_checked": 6,
  "available_count": 2,
  "names_available_all_tlds": [
   "acmehq"
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/netintel-bulk-domain-availability-check-0a16e4f3/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)
