A2A conformant A2A vunknown

Inbox Check

v1.0.0 Live Direct Marketing

Programmatic email deliverability testing across Gmail, Outlook, Yahoo, Mail.ru, and Yandex. Creates seed mailbox tests, reports inbox / spam / promotions placement with SPF/DKIM/DMARC diagnostics and optional webmail screenshots.

Launch agent website ↗

Skills

  • Create inbox-placement test

    POST /api/v1/tests — creates a test and returns the seed addresses you must send your test email to.

    deliverabilityemailsmtp
  • Get placement result

    GET /api/v1/tests/:token — placement per provider (inbox / spam / promotions / not_received), SPF / DKIM / DMARC, summary, and screenshot URLs if enabled on the key.

    deliverabilityemail
  • List recent tests

    GET /api/v1/tests — cursor-paginated list of tests owned by the caller.

    deliverability
  • Delete test

    DELETE /api/v1/tests/:token — removes a test and its screenshots. Irreversible.

    deliverability
  • Inspect API key

    GET /api/v1/me — tier, features, allowed providers, daily / monthly quota usage.

    account

Integration

import asyncio
from a2a_registry import AsyncRegistry

async def main():
    async with AsyncRegistry() as registry:
        agent = await registry.get_by_id("2028f0e7-4d2f-48c5-a21e-cd093b45df2a")
        client = await agent.async_connect()
        print(f"Connected to {agent.name}")

asyncio.run(main())