API CodexAPI Codex
WebsiteDashboardGet API Key
  • Documentation
  • All APIs
  • Changelog
Resources
  • Docs Home
  • API Catalog
  • API Codex Website
Platform
  • Get a free API key
  • Dashboard
  • APIs & Pricing

© 2026 API Codex. All rights reserved.

Information
Other endpoints
    Deliverability Checkget
Schemas
powered by Zudoku
Email Deliverability API
Email Deliverability API

Other endpoints


Deliverability Check

GET
https://api.apicodex.io/email-deliverability
/v1/deliverability

Analyzes DNS records of a domain (SPF, DKIM, DMARC, PTR) and provides a deliverability score along with actionable improvements.

Deliverability Check › query Parameters

domain
​string · required

The domain name to evaluate (e.g., example.com)

Example: example.com
ip
​string · ipv4

The IP address for PTR record validation

Example: 192.0.2.1

Deliverability Check › Responses

Successful operation

DeliverabilityResponse
domain
​string · required

The domain name that was evaluated

Example: example.com
score
​integer · min: 0 · max: 100 · required

The overall deliverability score (0-100)

Example: 85
improvements
​string[] · required

List of actionable improvements to enhance deliverability

Example: ["Add a valid DKIM record to help verify the sender's identity.","Configure a valid reverse DNS (PTR) record for better server reputation."]
​object · required
​object
reverse_dns
​string

The PTR record of the provided IP address (if available)

Example: mail.example.com
ip_in_spf
​boolean

Indicates whether the provided IP address is included in the SPF record

Example: true
GET/v1/deliverability
curl 'https://api.apicodex.io/email-deliverability/v1/deliverability?domain=<string>&apikey=<api-key>'
Example Responses
{ "domain": "example.com", "score": 85, "improvements": [ "Add a valid DKIM record to help verify the sender's identity.", "Configure a valid reverse DNS (PTR) record for better server reputation." ], "records": { "mx": [ { "exchange": "mail.example.com", "priority": 10 } ], "spf": "v=spf1 include:_spf.example.com ~all", "dkim": { "selector1": "v=DKIM1; k=rsa; p=MIIBIjANBgk..." }, "dmarc": "v=DMARC1; p=none; rua=mailto:dmarc-reports@example.com" }, "dns_results": { "spf": true, "dkim": true, "dmarc": true }, "reverse_dns": "mail.example.com", "ip_in_spf": true }
json
application/json