Get AI-generated domain suggestions

Obtain suggestions for domain names that match a specific search term. This is useful when you want to register a new domain and need inspiration. The API returns a list of available domain names.

Headers

Accept Example
Content-Type Example

Body

required
application/json
prompt string required

Responses

200
success boolean
timestamp string
requestId string
data object
POST https://cloud.hostup.se/api/ai-suggestions
For AI assistants
cURL
curl -X POST "https://cloud.hostup.se/api/ai-suggestions" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "prompt": "string"
  }'
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "suggestions": [
      "string"
    ]
  }
}
Request Body
{
  "prompt": "string"
}