Written by a network administrator who was tired of paying per domain. Counts SPF DNS lookups against the RFC 7208 limit of 10 (the usual silent cause of delivery loss), probes 28 DKIM selectors, parses DMARC, grades the result A to F.
Click one to see its parameters and a ready-to-paste curl call.
Counts the SPF DNS lookups against the RFC 7208 limit of 10, walks every include, probes 28 common DKIM selectors, parses the DMARC policy, and checks MTA-STS, TLS-RPT, BIMI and DNSSEC.
Returns: json
| Parameter | Type | Description |
|---|---|---|
domain required |
string |
Domain or email address to audit. |
selectors |
string |
Extra DKIM selectors to probe, comma-separated. |
curl -X POST "https://173-249-18-142.sslip.io/v1/domain/mail-security" \
-H "X-API-Key: $SMALLAPIS_KEY" \
-H "Content-Type: application/json" \
-d '{"domain":"example.com"}'
Look up DNS records
Returns: json
| Parameter | Type | Description |
|---|---|---|
domain required |
string |
Domain to resolve. |
type |
string |
Comma-separated record types. Default: A,AAAA,MX,NS,TXT,SOA,CNAME |
curl -X POST "https://173-249-18-142.sslip.io/v1/domain/dns" \
-H "X-API-Key: $SMALLAPIS_KEY" \
-H "Content-Type: application/json" \
-d '{"domain":"example.com","type":"A,AAAA,MX,NS,TXT,SOA,CNAME"}'
Returns the issuer, SANs, protocol, cipher and `daysRemaining` — enough to drive an expiry alert.
Returns: json
| Parameter | Type | Description |
|---|---|---|
domain required |
string |
Host to connect to. |
port |
integer |
TCP port. Default: 443 |
curl -X POST "https://173-249-18-142.sslip.io/v1/domain/tls" \
-H "X-API-Key: $SMALLAPIS_KEY" \
-H "Content-Type: application/json" \
-d '{"domain":"example.com","port":443}'
Scores HSTS, CSP, X-Content-Type-Options, Referrer-Policy, Permissions-Policy and the COOP/CORP pair, and flags version-leaking headers.
Returns: json
| Parameter | Type | Description |
|---|---|---|
domain required |
string |
Site to test. |
path |
string |
Path to request. Default: / |
curl -X POST "https://173-249-18-142.sslip.io/v1/domain/headers" \
-H "X-API-Key: $SMALLAPIS_KEY" \
-H "Content-Type: application/json" \
-d '{"domain":"example.com","path":"/"}'
Queries the registry RDAP server found through the IANA bootstrap, and falls back to port-43 WHOIS for the registries that refuse RDAP to data-centre addresses (.io and .de among them), so the lookup works on every TLD. The `source` field says which one answered.
Returns: json
| Parameter | Type | Description |
|---|---|---|
domain required |
string |
Domain to look up. |
curl -X POST "https://173-249-18-142.sslip.io/v1/domain/whois" \
-H "X-API-Key: $SMALLAPIS_KEY" \
-H "Content-Type: application/json" \
-d '{"domain":"example.com"}'
Check whether domains are registered
Returns: json
| Parameter | Type | Description |
|---|---|---|
domains required |
string |
Comma-separated list, up to 10. |
curl -X POST "https://173-249-18-142.sslip.io/v1/domain/availability" \
-H "X-API-Key: $SMALLAPIS_KEY" \
-H "Content-Type: application/json" \
-d '{"domains":"example.com,example.net"}'
Check an IP or domain against 10 DNS blacklists
Returns: json
| Parameter | Type | Description |
|---|---|---|
ip |
string |
IPv4 address to check. |
domain |
string |
Domain to resolve and check instead. |
curl -X POST "https://173-249-18-142.sslip.io/v1/domain/blacklist" \
-H "X-API-Key: $SMALLAPIS_KEY" \
-H "Content-Type: application/json" \
-d '{}'