DNS email security audit — SPF, DMARC, DKIM, BIMI, and MTA-STS check for domain spoofing a
DNS email security audit — SPF, DMARC, DKIM, BIMI, and MTA-STS check for domain spoofing and deliverability risk. Agent-friendly dns email security screen at micropayment pricing.
4500 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-27
updated
Provider
x402-hono-api.inraby.workers.dev · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xe2433f056f953b7d4c946cffb1201d2e9601eabf",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "4500",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"domain": "example.com"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"domain": "example.com",
"findings": [
{
"evidence": "v=DMARC1; p=none; rua=mailto:[email protected]",
"message": "DMARC policy is p=none and does not enforce spoofing protection",
"rule": "DMARC_POLICY_NONE",
"severity": "medium"
}
],
"recommendations": [
"Set DMARC p=quarantine or p=reject after monitoring with p=none."
],
"records": {
"bimi": [],
"dkim": [],
"dmarc": [
"v=DMARC1; p=none; rua=mailto:[email protected]"
],
"mtaSts": [],
"mx": [
"10 mail.example.com"
],
"spf": [
"v=spf1 include:_spf.example.com -all"
]
},
"riskScore": 45,
"status": "needs_remediation"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"domain": {
"description": "Domain to audit (example.com)",
"type": "string"
}
},
"required": [
"domain"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"domain": {
"type": "string"
},
"findings": {
"items": {
"properties": {
"evidence": {
"type": "string"
},
"message": {
"type": "string"
},
"rule": {
"type": "string"
},
"severity": {
"enum": [
"low",
"medium",
"high",
"critical"
]
}
},
"type": "object"
},
"type": "array"
},
"recommendations": {
"items": {
"type": "string"
},
"type": "array"
},
"records": {
"properties": {
"bimi": {
"items": {
"type": "string"
},
"type": "array"
},
"dkim": {
"items": {
"type": "string"
},
"type": "array"
},
"dmarc": {
"items": {
"type": "string"
},
"type": "array"
},
"mtaSts": {
"items": {
"type": "string"
},
"type": "array"
},
"mx": {
"items": {
"type": "string"
},
"type": "array"
},
"spf": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"riskScore": {
"maximum": 100,
"minimum": 0,
"type": "number"
},
"status": {
"enum": [
"pass",
"needs_remediation"
]
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://x402-hono-api.inraby.workers.dev/api/v1/dns-email-security-audit" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://x402-hono-api.inraby.workers.dev/api/v1/dns-email-security-audit");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://x402-hono-api.inraby.workers.dev/api/v1/dns-email-security-audit")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/3482.json, and this resource appears in /discovery/resources and /discovery/search.