Check if a Domain is available to register
POST/domains/
v2
POST
deprecated-domain-check-domain-registrability
This operation is deprecated. Use the POST /v2/domain-registrable endpoint instead.
Request
Responses
Usage examples
- cURL
- JavaScript SDK
- PHP SDK
$ curl \
--fail \
--location \
-X POST \
-H "Authorization: Bearer $MITTWALD_API_TOKEN" \
https://api.mittwald.de/v2/domains
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.deprecatedDomainCheckDomainRegistrability({});
assertStatus(response, 200);
use \Mittwald\ApiClient\Generated\V2\Clients\Domain\DeprecatedDomainCheckDomainRegistrability\DeprecatedDomainCheckDomainRegistrabilityRequest;
use \Mittwald\ApiClient\Generated\V2\Clients\Domain\DeprecatedDomainCheckDomainRegistrability\DeprecatedDomainCheckDomainRegistrabilityRequestBody;
$client = MittwaldAPIClient::newWithToken(getenv('MITTWALD_API_TOKEN'));
// TODO: Please consult the properties and constructor signature of
// DeprecatedDomainCheckDomainRegistrabilityRequestBody to learn how to construct a valid instance
$body = new DeprecatedDomainCheckDomainRegistrabilityRequestBody(/* TODO: ... */);
$request = (new DeprecatedDomainCheckDomainRegistrabilityRequest(
body: $body
));
$response = $client->domain()->deprecatedDomainCheckDomainRegistrability($request);
var_dump($response->getBody();