Официальный сервис регистрации и информации доменов .AM
Интегрируйте данные WHOIS Registrar.AM в свои приложения.
Простой HTTP GET-запрос для получения структурированных данных.
GET https://whois.registrar.am/api.php?domain={domain}
| Параметр | Тип | Описание |
|---|---|---|
domain | string | Введите домен .am (например, google.am) |
{
"domain": "GOOGLE.AM",
"status": "success",
"registrar": "INTMEN LLC",
"expiry_date": "2026-12-31",
"nameservers": [
"ns1.google.com",
"ns2.google.com"
],
"raw_data": "..."
}
Наш сервер поддерживает стандартный протокол WHOIS RFC 3912.
# Querying via command line whois -h whois.registrar.am google.am
$json = file_get_contents("https://whois.registrar.am/api.php?domain=google.am");
$data = json_decode($json, true);
echo $data['registrar'];
import requests
response = requests.get("https://whois.registrar.am/api.php?domain=google.am")
print(response.json()['registrar'])
curl "https://whois.registrar.am/api.php?domain=google.am"