1. DNS
InboxKit
  • Introduction
  • Order
    • Place Order
      POST
  • Webhook
    • Webhook Integration & Signature Verification
      POST
    • Event: Domain Status Changed
      POST
    • Event: Mailbox Status Changed
      POST
    • Events: OAuth Consent & Client ID Changes
      POST
  • Account
    • Get account details
      GET
  • Workspaces
    • List workspaces
      GET
    • Get workspace details
      GET
    • Create workspace
      POST
    • Update workspace
      PUT
    • Delete workspace
      DELETE
    • Update workspace webhook
      POST
    • Invite Member to Workspace
      POST
  • Domains
    • Domain Renewals
    • Search available domains
      POST
    • Check if domain is banned from registration
      GET
    • Check domain availability
      GET
    • Register domains
      POST
    • List domains
      POST
    • List assignable domains
      GET
    • Remove domains
      POST
    • Set domain forwarding
      POST
    • Set catch-all email
      POST
    • Remove catch-all email
      DELETE
    • Get nameservers for domain connection
      POST
    • Check nameservers propagation
      POST
    • Check Workspace Availability
      POST
    • Set DMARC Configuration
      POST
    • Remove DMARC Configuration
      DELETE
    • Regenerate Domain Nameservers
      POST
    • Request Domain Renewal
      POST
    • Check Renewal Status
      GET
  • Cloudflare Domains
    • Connect Cloudflare Domains
    • List Connected Cloudflare Domains
    • Get Domain Details
    • Disconnect Cloudflare Domains
    • List Cloudflare Zones
  • Mailboxes
    • List mailboxes
    • Add or update signature for mailboxes
    • Delete signature for mailboxes
    • Show mailbox credentials
    • Get mailbox details
    • Buy mailboxes
    • Check mailbox status
    • Cancel mailboxes
    • Update mailbox
    • Update mailbox profile picture
    • Generate TOTP
    • Change username
    • Change password
    • Check mailbox availability
    • Get Failure Reason
    • Uncancel mailboxes
  • DNS
    • Get DNS records
      GET
    • Add DNS records
      POST
    • Update DNS records
      POST
    • Delete DNS records
      POST
    • Verify DNS records
      POST
    • Repair DNS records
      POST
  • Sequencers
    • Export mailboxes status
    • List sequencer platforms
    • Get sequencer tags
    • List sequencers
    • Export mailboxes
    • Add sequencer
    • Update sequencer
    • Delete sequencers
  • Billing
    • Get pricing plans
    • Add Credits to Wallet
    • Get subscription details
    • Check Payment Status
    • Change subscription plan
    • Cancel subscription
    • Get wallet details
    • Update auto top-up settings
    • Get billing portal link
    • Get Wallet Logs
  • Warmup
    • List Warmup Subscriptions
    • Get Warmup Subscription Details
    • Add Warmup to Mailboxes
    • Pause Warmup for Mailboxes
    • Resume Warmup for Mailboxes
    • Cancel Warmup for Mailboxes
    • Get Warmup Statistics
    • Get Warmup Pricing
  • Client ID Requests
    • Initiate Client ID Request
    • Get Client ID Request Status
    • List Client ID Requests
  • Mailbox Forwarding
    • Setup Email Forwarding
    • Update Email Forwarding
    • Remove Email Forwarding
    • List Forwarding Jobs
  • Consent Request
    • Initiate Consent Request
    • Get Consent Request Status
    • List Consent Requests
  • Tags
    • Assign tags to domains or mailboxes
    • Get all tags
    • Create a new tag
    • Delete a tag
  • Prewarm
    • Search Domains
    • Search Mailboxes
    • Buy Prewarmed Mailboxes
    • Check Order Status
    • Check Availability
  • Inbox Placement
    • Tests
      • Create Test
      • List Tests
      • Get Test Results
    • Scheduled Tests
      • List Scheduled Tests
      • Get Scheduled Test
      • Pause Scheduled Test
      • Resume Scheduled Test
      • Delete Scheduled Test
  • InfraGuard
    • InfraGuard - Subscriptions
      • List protected domains
      • Get subscription details
      • Enable InfraGuard for domains
      • Cancel InfraGuard for domains
      • Get workspace statistics
      • Get pricing info
    • InfraGuard - Monitoring
      • Get blacklist check history
      • Get DNS check history
      • Get current bounce metrics
      • Get bounce check history
    • InfraGuard - Settings
      • Update subscription settings
      • Trigger manual check
    • InfraGuard - Alerts
      • List alerts
      • Acknowledge an alert
      • Resolve an alert
    • InfraGuard - Action Items
      • List action items
      • Get action item statistics
      • Resolve an action item
      • Dismiss an action item
  • Email Insight
    • Email Insights - Workspace
      • Get Workspace Overview
      • Get Mailboxes Health
      • Get High Bounce Mailboxes
      • Get Workspace Activity
    • Email Insights - Mailbox
      • Get Mailbox Stats
      • Get Mailbox Deliverability
      • Get Mailbox Health
      • Get Mailbox Trends
      • Get Mailbox Activity
      • Get Mailbox Bounce Events
      • Get Mailbox Top Recipients
      • Get Mailbox Top Recipient Domains
      • Get Mailbox Message Breakdown
      • Get Mailbox Subject Analysis
  • Domain Renewals
  • Schemas
    • Schemas
      • WebhookPayload
      • DomainStatusWebhook
      • Tag
      • DomainEventData
      • MailboxStatusWebhook
      • MailboxEventData
      • Domain
      • Mailbox
      • ChangeDetails
      • WebhookResponse
      • ErrorResponse
  1. DNS

Verify DNS records

POST
https://api.inboxkit.com/v1/api/dns/verify
Maintainer:Not configured
Check the health of your email DNS records for one or more domains.
This endpoint inspects the four essential email authentication records (MX, SPF, DKIM, and DMARC), compares them against the expected values for your email platform (Google Workspace or Microsoft 365), and cross-checks with Cloudflare to detect any inconsistencies.
You can verify a single domain by passing domain or uid, or verify up to 50 domains at once by passing domains or uids as an array. The response always returns a results array with per-domain verification details, along with an aggregated summary.
This is a read-only operation. No records are modified. To fix any issues found, use the Repair DNS Records endpoint.
What gets checked:
MX - Mail exchange record (controls where email is delivered)
SPF - Sender Policy Framework (controls who can send email on your behalf)
DKIM - DomainKeys Identified Mail (verifies email signatures)
DMARC - Domain-based Message Authentication (sets your email authentication policy)
Health statuses explained:
healthy - All four email records are correctly configured and in sync
critical - One or more records are missing or in an error state, which will likely cause email delivery failures
issues_found - Records exist but some have incorrect values, which may affect email authentication
unknown - No email platform could be detected for this domain
Per-record statuses:
ok - Record is present and has the correct value
missing - Record does not exist and needs to be created
misconfigured - Record exists but has an incorrect value
errored - Record failed to sync and needs to be re-synced
pending - Record was recently created or updated and is waiting to propagate
not_applicable - Record is not relevant for this domain (for example, DKIM before a mailbox has been set up)

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Header Params

Body Params application/json

Examples

Responses

🟢200OK
application/json
DNS verification completed successfully. The response includes an aggregated summary and a results array with per-domain details.
Bodyapplication/json

🟠400Bad Request
🟠401Unauthorized
🟠404Not Found
🔴500Server Error
Request Request Example
Shell
JavaScript
Java
Swift
cURL
curl --location 'https://api.inboxkit.com/v1/api/dns/verify' \
--header 'X-Workspace-Id;' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
  "domain": "example.com"
}'
Response Response Example
200 - Single healthy domain
All four email records are present and correctly configured.
{
  "error": false,
  "message": "Bulk DNS verification completed: 1 domain verified",
  "summary": {
    "total_requested": 1,
    "total_verified": 1,
    "total_failed": 0,
    "healthy": 1,
    "critical": 0,
    "issues_found": 0,
    "needs_repair": 0
  },
  "results": [
    {
      "domain": "example.com",
      "domain_uid": "3340bae3-53c3-4ab8-9c61-1d8205b86c70",
      "status": "success",
      "platform": "GOOGLE",
      "cloudflare_checked": true,
      "overall_health": "healthy",
      "needs_repair": false,
      "records": [
        {
          "label": "MX",
          "type": "MX",
          "host": "@",
          "status": "ok",
          "current_value": "smtp.google.com",
          "expected_value": "smtp.google.com",
          "issue": null,
          "fix_description": null
        },
        {
          "label": "SPF",
          "type": "TXT",
          "host": "@",
          "status": "ok",
          "current_value": "v=spf1 include:_spf.google.com ~all",
          "expected_value": "v=spf1 include:_spf.google.com ~all",
          "issue": null,
          "fix_description": null
        },
        {
          "label": "DMARC",
          "type": "TXT",
          "host": "_dmarc",
          "status": "ok",
          "current_value": "v=DMARC1; p=reject; pct=100; rua=mailto:[email protected]; ruf=mailto:[email protected]; ri=604800; aspf=s; adkim=s",
          "expected_value": "v=DMARC1; p=reject; pct=100; rua=mailto:[email protected]; ruf=mailto:[email protected]; ri=604800; aspf=s; adkim=s",
          "issue": null,
          "fix_description": null
        },
        {
          "label": "DKIM",
          "type": "TXT",
          "host": "google._domainkey",
          "status": "ok",
          "current_value": "v=DKIM1; k=rsa; p=MIIBIjAN...",
          "expected_value": "v=DKIM1; k=rsa; p=MIIBIjAN...",
          "issue": null,
          "fix_description": null
        }
      ],
      "record_summary": {
        "total_checked": 4,
        "ok": 4,
        "missing": 0,
        "misconfigured": 0,
        "errored": 0,
        "pending": 0,
        "not_applicable": 0,
        "out_of_sync": 0
      }
    }
  ]
}
Modified at 2026-05-05 11:33:20
Previous
Delete DNS records
Next
Repair DNS records
Built with