Suggest a list of domains based on a prompt using AI
GET/domain-suggestions/
v2
GET
domain-suggest
Request
Responses
Usage examples
- cURL
- JavaScript SDK
- PHP SDK
$ curl \
--fail \
--location \
-H "Authorization: Bearer $MITTWALD_API_TOKEN" \
https://api.mittwald.de/v2/domain-suggestions?prompt=string&domainCount=123&tlds=string
import { MittwaldAPIV2Client } from "@mittwald/api-client";
import { assertStatus } from "@mittwald/api-client-commons";
const client = MittwaldAPIClient.newWithToken(process.env.MITTWALD_API_TOKEN);
const response = await client.domain.suggest({
"queryParameters": {
"prompt": "string",
"domainCount": 123,
"tlds": [
"string"
]
}
});
assertStatus(response, 200);
use \Mittwald\ApiClient\Generated\V2\Clients\Domain\Suggest\SuggestRequest;
$client = MittwaldAPIClient::newWithToken(getenv('MITTWALD_API_TOKEN'));
$request = (new SuggestRequest())
->withPrompt("string")
->withDomainCount(123)
->withTlds(["string"]);
$response = $client->domain()->suggest($request);
var_dump($response->getBody();