Skip to content

Domain Suggest

Premium · 5 credits

Describe your project and get creative domain name suggestions with availability checked against specified TLDs.

FieldTypeRequiredDefaultDescription
descriptionstringYesProject or business description
tldsarrayNo["com", "dev", "io"]TLDs to check availability against
countintegerNo5Number of available suggestions to return
FieldTypeDescription
suggestionsarrayDomain suggestions
suggestions[].domainstringFull domain name
suggestions[].availablebooleanWhether the domain is available
suggestions[].reasoningstringWhy this name was suggested
Terminal window
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"
}
]
}