Masterify

make.com · Pro or higher

Turn Google Drive uploads into an automatic mastering pipeline

A starter template that connects file detection, job creation, completion webhook, and Slack notification all within make.com.

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

Expected Outcome

  • Receive completion links on Slack without manual checking after upload
  • Use Drive as a simple queue
  • Shorten team review loops
1

Google Drive trigger

2

HTTP POST /api/v1/master with webhook_url

3

Webhook receive job.completed

4

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.