Domain Lookup

Who registered a domain, how old it is, and where its DNS points, in one call.

$0.0020 per call POST /v1/tools/domain-lookup

Call it

The first response is 402 with the exact price and every rail you can pay with. Pay, repeat the request with the proof, and you get the result.

curl -X POST https://api.glianalabs.com/v1/tools/domain-lookup \
  -H 'content-type: application/json' \
  -d '{"domain":"glianalabs.com"}'

When to use it

Use when an agent vets a site or an email sender before trusting it, checks whether a name is taken, or confirms email authentication is set up. Inputs: domain (required — a bare domain or a full URL; a subdomain falls back to the registered domain), records (optional array of A, AAAA, MX, NS, TXT, CNAME, CAA; default A, AAAA, MX, NS, TXT). Returns registration (registrar, created, expires, age_days, status, nameservers, dnssec) read from the registry's own RDAP server, dns records by type, email (SPF record, DMARC record and its policy), and registered: false when the registry has no such domain. Some TLDs publish no RDAP at all (e.g. .io, .co): registration is then null and named in degraded, while DNS still answers.

What it costs

$0.0020 per successful call — flat, with no plan, minimum or monthly fee. A call that fails validation is refused before it runs, so it is never charged.

Not sure this is the right endpoint? GET /v1/consult?intent=… is free and answers that.