# Tomba Domain Suggestions

> Tomba Domain Suggestions is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns domain name suggestions for a given company name or keyword query

## Facts

- Endpoint: GET https://x402.orthogonal.com/tomba/v1/domain-suggestions
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tomba-domain-suggestions-1fdf2e78
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pZqq7u2hDdI6uQmpjXxm0

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 tomba-domain-suggestions-1fdf2e78
```

Example prompt: Can you suggest some domain names for my company called 'BrightLeaf Analytics'?

## When to prefer this

Use this endpoint when you need to programmatically generate domain name ideas from a company or brand name, especially in agentic workflows where you're helping users explore branding options or automate business setup. It is backed by the Tomba data provider and is well-suited for lightweight, per-query lookups at low cost ($0.01 USDC per call).

## Known failure modes

- Missing or empty query parameter returns an error or empty results
- Invalid query string may return no suggestions
- Rate limiting or payment failure via x402 may block the request
- Unusual or very long company names may return limited or no suggestions

## How this service works

Get domain suggestions for a company name

## Output

A list of suggested domain names based on the provided company name or keyword, typically including variations and alternatives that could be registered for the business.

## 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",
     "properties": {
      "query": {
       "type": "string",
       "description": "The domain or company name to find suggestions for"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tomba-domain-suggestions-1fdf2e78/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.orthogonal.com](https://www.zero.xyz/host/x402.orthogonal.com/llms.txt)
