English Русский Հայերեն Español Français Deutsch 中文 Қазақша Українська ქართული हिन्दी فارسی

Registrar.AM

Offizieller Registrierungsdienst für .AM-Domains

API-Dokumentation

Integrieren Sie Registrar.AM WHOIS-Daten in Ihre Anwendungen.

1. HTTP JSON API

Einfache HTTP GET-Anfrage für strukturierte Daten.

GET https://whois.registrar.am/api.php?domain={domain}

Parameter

ParameterTypBeschreibung
domainstringGeben Sie die .am-Domain ein (z. B. google.am)

Beispielantwort

{
  "domain": "GOOGLE.AM",
  "status": "success",
  "registrar": "INTMEN LLC",
  "expiry_date": "2026-12-31",
  "nameservers": [
    "ns1.google.com",
    "ns2.google.com"
  ],
  "raw_data": "..."
}

2. Standard WHOIS (Port 43)

Unser Server unterstützt das Standard-RFC 3912 WHOIS-Protokoll.

# Querying via command line
whois -h whois.registrar.am google.am

3. Code-Beispiele

PHP

$json = file_get_contents("https://whois.registrar.am/api.php?domain=google.am");
$data = json_decode($json, true);
echo $data['registrar'];

Python (Requests)

import requests
response = requests.get("https://whois.registrar.am/api.php?domain=google.am")
print(response.json()['registrar'])

cURL

curl "https://whois.registrar.am/api.php?domain=google.am"