Domain Suggest
Premium · 5 creditsDescribe your project and get creative domain name suggestions with availability checked against specified TLDs.
POST /api/domain-suggest
Section titled “POST /api/domain-suggest”Parameters
Section titled “Parameters”| Field | Type | Required | Default | Description |
|---|---|---|---|---|
description | string | Yes | — | Project or business description |
tlds | array | No | ["com", "dev", "io"] | TLDs to check availability against |
count | integer | No | 5 | Number of available suggestions to return |
Response
Section titled “Response”| Field | Type | Description |
|---|---|---|
suggestions | array | Domain suggestions |
suggestions[].domain | string | Full domain name |
suggestions[].available | boolean | Whether the domain is available |
suggestions[].reasoning | string | Why this name was suggested |
Example
Section titled “Example”curl -X POST https://morso.dev/api/domain-suggest \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{"description": "A CLI tool for managing Kubernetes clusters with AI-powered diagnostics", "tlds": ["dev", "io", "sh"], "count": 3}'{ "suggestions": [ { "domain": "kubepilot.dev", "available": true, "reasoning": "Combines Kubernetes (kube) with pilot, suggesting AI-guided navigation of clusters" }, { "domain": "clusterwise.io", "available": true, "reasoning": "Evokes intelligent cluster management — wise decisions about infrastructure" }, { "domain": "kubectl.sh", "available": false, "reasoning": "Memorable shell-like domain for a CLI tool, plays on kubectl" } ]}