language

Domain Info API

Endpoint (GET)
https://api.hyperteo.uz/d/

Domen haqidagi RDAP ma'lumotlarini olish uchun.

Parametrlar
d Domen nomi (Majburiy)
?d=hyperteo.uz
Javob Ma'lumotlari
ldhName

Domen nomi

status

Domen holati

events

Sana (Reg/Exp)

nameservers

DNS serverlar

API Namuna Kodlar
domain_api_examples.php
// PHP cURL Example
$domain = 'google.com';
$url = "https://api.hyperteo.uz/d/?d=$domain";

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$response = curl_exec($ch);
curl_close($ch);

$data = json_decode($response, true);
echo $data['ldhName'] ?? 'Domain not found';
Query Example
https://api.hyperteo.uz/d/?d=google.com