Quickstart
Send your first email in 5 minutes.
1. Get your API key
Sign up at subscribeflow.net, open the Dashboard, and create an API key. Copy it immediately -- it is only shown once.
Your key starts with sf_live_ for production or sf_test_ for testing.
2. Install the SDK
3. Create a subscriber
import asyncio
from subscribeflow import SubscribeFlowClient
async def main():
async with SubscribeFlowClient(api_key="sf_live_...") as client:
subscriber = await client.subscribers.create(
email="user@example.com",
metadata={"source": "website"},
)
print(f"Created: {subscriber.id}")
asyncio.run(main())
4. Add a tag
5. Send an email
Next steps
- Authentication -- API key scopes and rate limits
- SDK Setup -- configuration, error handling, and advanced options
- Subscribers guide -- full subscriber management
- Tags guide -- organize subscribers with tags
- Sending Emails guide -- templates, campaigns, and triggers