Deliverability

Deliverability insights enable a sender to understand and monitor how the mailings are performing after the Mailbox Provider accepts them. Deliverability data for a sending domain can be accessed using the Inbox Tracker API, as shown below:

from inboxtracker import InboxTracker

it = InboxTracker("API_KEY")

response = it.deliverability.get_deliverability_by_domain(
    domain="example.com",
    qd="daysBack:1",
    embed="gmailCategories"
)
print(response)

Get Deliverability Stats for Domain

from inboxtracker import InboxTracker

it = InboxTracker("API_KEY")

it.deliverability.get_deliverability_by_domain(
    domain="example.com",
    qd="daysBack:1",
    embed="gmailCategories"
)