check_domain_availability
Verify domain name availability for registration and retrieve pricing information to secure your desired web address.
Instructions
Check if a domain is available for registration and return pricing.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
domainName | Yes | Domain name to check. | |
years | No | Registration term (years). |
Input Schema (JSON Schema)
{
"properties": {
"domainName": {
"description": "Domain name to check.",
"type": "string"
},
"years": {
"default": 1,
"description": "Registration term (years).",
"type": "number"
}
},
"required": [
"domainName"
],
"type": "object"
}