Generate subject line variants for a topic
cURL
curl --request POST \ --url https://api.sequenzy.com/api/v1/generate/subjects \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "topic": "<string>", "count": 123 } '
{ "success": true, "topic": "April product launch", "subjects": [ "Meet what we shipped in April", "Your April product update is here" ] }
5
curl -X POST "https://api.sequenzy.com/api/v1/generate/subjects" \ -H "Authorization: Bearer seq_live_xxx" \ -H "Content-Type: application/json" \ -d '{ "topic": "April product launch", "count": 5 }'