tools/integrations/audiencetap.md
SMS and email marketing platform built for direct-to-consumer brands. Newer entrant positioning as a more flexible, AI-forward alternative to Klaviyo / Postscript / Attentive with emphasis on creative automation and on-pack QR opt-in.
| Integration | Available | Notes |
|---|---|---|
| API | ✓ | REST API (confirm with vendor; access tied to plan tier) |
| MCP | - | Not available |
| CLI | - | None |
| SDK | - | Use API directly |
Verify current API surface and capabilities at https://audiencetap.com before building against this guide — newer platform, surface evolves quickly.
Authorization: Bearer {api_key}POST https://api.audiencetap.com/v1/subscribers
{
"phone_number": "+15551234567",
"email": "[email protected]",
"first_name": "Jane",
"opt_in_source": "checkout",
"list_id": "..."
}
POST https://api.audiencetap.com/v1/subscribers/unsubscribe
{
"phone_number": "+15551234567",
"channel": "sms"
}
POST https://api.audiencetap.com/v1/events
{
"subscriber": { "phone_number": "+15551234567" },
"event_name": "abandoned_cart",
"properties": {
"cart_value": 89.99,
"items": ["Product A"]
}
}
POST https://api.audiencetap.com/v1/messages/transactional
{
"phone_number": "+15551234567",
"body": "Your order #1234 shipped. Track: https://...",
"category": "shipping"
}
GET https://api.audiencetap.com/v1/flows
Subscribe to: subscriber events, message delivery events, conversion attribution. Configured in dashboard.
REST + JSON. Bearer auth. Pagination conventions vary by endpoint — confirm in current docs.