Nexus APIs
WHOIS Lookup and Search
Retrieve one domain registration record or search collected WHOIS and RDAP data by registrar, nameserver, TLD, status, or expiry.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Retrieve one domain registration record or search collected WHOIS and RDAP data by registrar, nameserver, TLD, status, or expiry.
GET /api/v1/nexus/whois/lookup?domain={domain}
curl --get "https://fullhunt.io/api/v1/nexus/whois/lookup" \
-H "X-API-KEY: $FULLHUNT_API_KEY" \
--data-urlencode "domain=example.com"
GET /api/v1/nexus/whois/search
| Parameter | Description |
|---|---|
registrar | Registrar substring |
nameserver | Nameserver substring |
tld | Top-level domain without a leading dot |
status | WHOIS or Registration Data Access Protocol status substring |
expires_before | Return domains expiring on or before an ISO date |
limit | Maximum records, from 1 through 10; default 10 |
curl --get "https://fullhunt.io/api/v1/nexus/whois/search" \
-H "X-API-KEY: $FULLHUNT_API_KEY" \
--data-urlencode "nameserver=ns1.example.net" \
--data-urlencode "tld=com" \
--data-urlencode "limit=10"
