GET
/v1/lookupWHOIS Lookup
Domain WHOIS lookup via configured upstream.
Part of WHOIS Lookup· Rate limits: 10 req/min
Parameters
domainquerystringrequiredDomain name
X-SEEKER-KeyheaderstringrequiredYour API Seeker key
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| domain | query | string | Yes | Domain name |
| X-SEEKER-Key | header | string | Yes | Your API Seeker key |
Code examples
cURL
curl -s "https://whois.apiseeker.com/v1/lookup" \
-H "X-SEEKER-Key: YOUR_API_KEY"Response
JSON
{
"success": true,
"data": {
"domain": "apiseeker.com",
"whois": {
"status": "configured upstream"
}
},
"request_id": "req_example"
}Errors
- 400 — Invalid or missing parameters
- 401 — Missing or invalid API key
- 429 — Rate limit exceeded
- 503 — WHOIS upstream not configured
Try this endpoint
API Playground
WHOIS Lookup
Live testing requires an account. Log in or create an API key to send requests. Docs and snippets stay available without login.
GET
whois.apiseeker.comhttps://whois.apiseeker.com/v1/lookupStatus: —Latency: —
Response headers
Log in to run a test and see headers.
Response body
Log in required for live testing.
Generated snippets
cURL
curl -s "https://whois.apiseeker.com/v1/lookup" \
-H "X-SEEKER-Key: YOUR_API_KEY"