Veille

Domain Validation

GET
/v1/intelligence/domain

Check any domain instantly. Detects disposable email providers, public webmail, relay services, and education domains. Returns DNS health with MX provider detection, domain history, and optional SSL/TLS certificate transparency.

Credit cost: 2 credits per call

Autorisierung

ApiKeyAuth
x-api-key<token>

Your API key. Include it in the x-api-key header for every request.

In: header

Abfrageparameter

query*string

The domain to validate. Accepts raw domains (tempmail.org), full URLs (https://www.tempmail.org/page), or domains with www. prefix, all are normalized automatically.

certificate_transparency?boolean

Enable Certificate Transparency lookup. Returns SSL/TLS certificate history, current certificate, issuers, and all Subject Alternative Names (SANs) ever associated with the domain. Adds 1-5 seconds of latency.

Default"false"

Antworttext

application/json

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/v1/intelligence/domain?query=string"

{  "dns": {    "mx": true,    "spf": "v=spf1 include:_spf.tempmail.org ~all",    "dmarc": null,    "spf_valid": true,    "mx_records": [      {        "hostname": "mx1.tempmail.org",        "priority": 10      }    ],    "dmarc_valid": false,    "mx_providers": []  },  "tags": [    "disposable"  ],  "whois": {    "registrar": "Namecheap, Inc.",    "updated_date": "2024-08-20",    "creation_date": "2023-09-15",    "expiration_date": "2025-09-15"  },  "domain": "tempmail.org",  "sources": [    "disposable-email-domains"  ],  "education": false,  "last_seen": "2026-02-18",  "disposable": true,  "first_seen": "2024-03-12",  "is_subdomain": false,  "relay_domain": false,  "public_domain": false,  "domain_age_days": 892}

{  "error": "Bad Request"}
{  "error": "Invalid API Key"}
{  "error": "Payment required"}
{  "error": "Rate limit exceeded for the API key: quota monthly"}
{  "error": "Internal Error"}