Data source: RDAP (Registration Data Access Protocol)
https://context.gnist.ai/rest/whois-lookup/
AuthenticationAll requests require a Gnist-API-Key header (or api_key query parameter).
Free tier: 100 calls/day. Get your API key.
Tools (2)
whois_lookupLook up domain registration (WHOIS) information.
Returns registrar, registration/expiration dates, nameservers, status,
DNSSEC, and registrant contact (when available). Uses RDAP, the modern
successor to traditional WHOIS.
Args:
domain: Domain name to look up (e.g. "example.com"). Can include www. or https:// prefix.
| Parameter | Type | Required | Description |
|---|---|---|---|
domain | string | required |
{
"domain": "example"
}report_feedbackReport a bug, feature request, or general feedback for this data source.
Use this when something doesn't work as expected, when you'd like
a new feature, or when you have suggestions for improvement.
Args:
feedback: Describe the issue or suggestion.
feedback_type: One of 'bug', 'feature_request', or 'general'.
| Parameter | Type | Required | Description |
|---|---|---|---|
feedback | string | required | |
feedback_type | string | optional | (default: "general") |
{
"feedback": "example"
}Quick Start
curl -X POST "https://context.gnist.ai/rest/whois-lookup/whois_lookup" \
-H "Content-Type: application/json" \
-H "Gnist-API-Key: YOUR_API_KEY" \
-d '{"domain": "example"}'
import httpx
resp = httpx.post(
"https://context.gnist.ai/rest/whois-lookup/whois_lookup",
headers={"Gnist-API-Key": "YOUR_API_KEY"},
json={
"domain": "example"
},
)
print(resp.json())