REST API Documentation
Integrate domainawait lookup feeds directly inside your custom dashboard apps.
REST API Usage
Our API service allows you to query all TLD and Trabis (.tr) domains from your own applications or scripts without CORS limitations.
GET
/api/v1/domain/{domain_adi}
Query Parameters
| Parameter | Type | Description |
|---|---|---|
domain_adi |
String (Path) | The domain name to query. (e.g. google.com or btk.gov.tr) |
api_key |
String (Query / Header) | Your registered API key. Required to authenticate your requests and apply your plan limits. |
refresh |
Boolean (Query) | Optional. If set to true, the cache is bypassed and a live query is executed. |
Example Request (cURL)
curl -X GET "http://followdomain1.kominikee.com/api/v1/domain/google.com" \
-H "X-API-Key: da_sizin_api_anahtariniz"
Example Response (Registered Domain)
{
"success": true,
"domain": "google.com",
"registered": true,
"registration_date": "1997-09-15 04:00:00",
"expiration_date": "2028-09-14 04:00:00",
"last_changed_date": "2019-09-09 15:39:04",
"last_checked": "2026-05-29 16:30:12",
"registrar": "MarkMonitor Inc.",
"follower_count": 12,
"status": [
"client delete prohibited",
"client transfer prohibited",
"client update prohibited"
],
"nameservers": [
"ns1.google.com",
"ns2.google.com"
]
}