3. Distribute a Music Release
Uploads your music directly to streaming platforms like Spotify, Apple Music, and Loudr.
There are a few steps to publish music:
1. Upload Your Music to a URL
Our partners need a .mp3
file to download and access, therefore the first step is for you to upload the music to some accessible URL.
This is a required value for the POST request
2. Prepare the API call to the POST /api/releases
endpoint
/api/releases
endpointThe distributor will test the
audio_file_url
download, if this fails the release will be rejected until it's fixed.
See the API for detailed info on the publish call, but an example is something like the following:
curl -X POST \
https://api-staging.lyramusic.ai/api/releases \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY" \
-H "x-api-secret: YOUR_API_SECRET" \
-d '{
"title": "My New Release",
"release_type": "SINGLE",
"display_title": "My New Release (Special Edition)",
"primary_artist_id": "00000000-0000-0000-0000-000000000000",
"artists": [
{
"artist_id": "00000000-0000-0000-0000-000000000000",
"roles": ["PRIMARY"],
"share_percentage": 100,
"credit_name": "Artist Name"
}
],
"composition_metadata": {
"iswc": "T-123456789-0",
"writers": [
{
"name": "Songwriter Name",
"role": "COMPOSER",
"share_percentage": 100
}
]
},
"audio_file_url": "https://example.com/audio.mp3",
"artwork_url": "https://example.com/artwork.jpg",
"release_date": "2023-12-31",
"explicit": false,
"language": "English",
"genre": "Pop",
"subgenre": "Indie Pop",
"record_label": "Example Records",
"publisher": "Example Publishing",
"territory_restrictions": ["US", "CA"],
"recording_location": "Example Studio",
"recording_date": "2023-06-15"
}'
3. Check the Release status
If your release
submission is successful, you will receive a response with a status
of PROCESSING_BY_OPULOUS
This means that your release
is now being reviewed for distribution on various platforms.
Lyra Music Team Support
We will also be in touch on Telegram, Discord, or email to work with you on potential promotion or marketing for your track, we'd love to help in any way we can!
Wait for the Release status to be DISTRIBUTED_ON_OPULOUS
DISTRIBUTED_ON_OPULOUS
If the distribution is successful, the release status
will change to DISTRIBUTED_ON_OPULOUS
, after this we will also reach out and work with you on next steps.
Congratulations, it's never been easier to get your AI music on Spotify, and other streaming platforms!
Updated 11 days ago