Seeds
Traditional Seeds are one data source that Inbox Tracker leverages to provide insight into the performance of campaigns. Traditional Seeds are email addresses that senders can include as recipients in their mailings and are used by Inbox Tracker to provide a number of deliverability insights and metrics, including inbox placement and email authentication. The most current list of Traditional Seeds can be retrieved using the Inbox Tracker API, as shown below:
from inboxtracker import InboxTracker
it = InboxTracker("API_KEY")
response = it.seeds.get_seeds()
print(response)
Using Seed Lists
Retrieve Current Seed List
from inboxtracker import InboxTracker
it = InboxTracker("API_KEY")
it.seeds.get_seeds()
Retrieve Last Update Time
from inboxtracker import InboxTracker
it = InboxTracker("API_KEY")
it.seeds.get_last_update()
Retrieve Seed Usage
from inboxtracker import InboxTracker
it = InboxTracker("API_KEY")
it.seeds.get_usage()