Setup Checklist
- Issue a Masterify API key
- Create a make.com custom webhook URL
- Specify the Google Drive folder to watch
- Specify the Slack channel or DM target
make.com · Pro or higher
A starter template that connects file detection, job creation, completion webhook, and Slack notification all within make.com.
Setup Checklist
Expected Outcome
Google Drive trigger
HTTP POST /api/v1/master with webhook_url
Webhook receive job.completed
Slack message with download_url
API Request
curl -X POST https://api.masterify.net/api/v1/master \
-H "Authorization: Bearer aim_live_xxx" \
-F "[email protected]" \
-F "platforms=spotify,apple_music" \
-F "ai_service=suno" \
-F "webhook_url=https://hook.make.com/your-webhook-id"Webhook / Response Example
{
"event": "job.completed",
"job_id": "550e8400-e29b-41d4-a716-446655440000",
"status": "done",
"download_url": "https://api.masterify.net/api/v1/jobs/.../download"
}Ops Notes
Completion URLs are only valid during the retention period, so process them quickly from Slack.
Even when creating multiple platform versions at once, billing is 1 credit per job.