# Strale Startup Name Availability Checker

> Strale Startup Name Availability Checker is a paid API for AI agents from api.strale.io, paid per call via x402, $0.054001/call, status unknown (last checked 2026-09-14, last successful call 2026-04-29).

Checks domain and handle availability across .com/.io/.ai/.co/.dev domains, Twitter, GitHub, npm, and PyPI for a given startup name or keyword.

## Facts

- Endpoint: GET https://api.strale.io/x402/startup-domain-check
- Price: $0.054001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Last successful call: 2026-04-29
- Success rate: 100% of calls made through Zero
- Activations on Zero: 1
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-strale-io-11fb5302
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BFaCsbRURD5alxCfFsQ2W

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 api-strale-io-11fb5302
```

Example prompt: Can you check if 'Luminary' is available as a startup name — I want to know if the .com, .io, and .ai domains are free, plus whether the Twitter handle, GitHub org, npm package, and PyPI package are taken?

## When to prefer this

Use this endpoint when you need a one-shot multi-platform availability check for a startup or product name, covering both domain registrars and developer/social handles simultaneously, rather than querying each registry separately.

## Known failure modes

- Invalid or missing company_name parameter returns a 400-level error
- External registry timeouts may cause partial results for some platforms
- Rate limiting from downstream services (Twitter, GitHub, npm, PyPI) may reduce freshness
- Very long or special-character names may return unexpected results

## How this service works

Check domain and handle availability for a startup name. Checks .com/.io/.ai/.co/.dev domains, Twitter, GitHub, npm, PyPI.

## Output

Returns availability status for .com, .io, .ai, .co, and .dev domains, plus Twitter handle, GitHub username, npm package name, and PyPI package name — all keyed to the queried company name or keyword.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "company_name": "Luminary"
  }
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "company_name"
 ],
 "properties": {
  "company_name": {
   "type": "string",
   "description": "Company name or keyword"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "taken": {
  "type": "array"
 },
 "social": {
  "type": "array"
 },
 "domains": {
  "type": "array"
 },
 "available": {
  "type": "array"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-strale-io-11fb5302/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
