Look up a domain
Search records
registrar, nameserver, tld, status, or expires_before is required. limit defaults to 10 and must be from 1 through 10.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Retrieve one registration record or search collected WHOIS and RDAP data with OEM attribution.
POST /api/v1/oem/whois/lookup
curl "https://fullhunt.io/api/v1/oem/whois/lookup" \
-H "X-API-KEY: $FULLHUNT_API_KEY" \
-H "Content-Type: application/json" \
--data '{
"domain": "example.com",
"query_tags": {"tenant_id": "tenant-123"}
}'
POST /api/v1/oem/whois/search
registrar, nameserver, tld, status, or expires_before is required. limit defaults to 10 and must be from 1 through 10.
curl "https://fullhunt.io/api/v1/oem/whois/search" \
-H "X-API-KEY: $FULLHUNT_API_KEY" \
-H "Content-Type: application/json" \
--data '{
"tld": "com",
"expires_before": "2027-01-01",
"limit": 10,
"query_tags": {"tenant_id": "tenant-123"}
}'
