Complete documentation for all JewelMusic API endpoints
https://api.jewelmusic.art/v1
Authorization: Bearer jml_live_your_api_key_here
Request Body:
{
"audio_url": "https://example.com/song.mp3",
"languages": ["en", "ka", "es"],
"include_timestamps": true,
"format": "json"
}
Response:
{
"transcription_id": "tr_1234567890",
"status": "completed",
"lyrics": [
{
"timestamp": 0,
"text": "First line of lyrics",
"language": "en"
}
],
"confidence": 0.997
}
Request Body:
{
"track_id": "trk_1234567890",
"analysis_types": [
"tempo",
"key",
"structure",
"cultural_patterns",
"mood"
]
}
Response:
{
"analysis_id": "an_1234567890",
"tempo": 120,
"key": "C major",
"time_signature": "4/4",
"structure": {
"intro": "0:00-0:15",
"verse": "0:15-1:00",
"chorus": "1:00-1:30"
},
"cultural_classification": {
"primary": "Georgian Polyphonic",
"confidence": 0.92
},
"mood": ["uplifting", "traditional"]
}
Request Body:
{
"release_id": "rel_1234567890",
"platforms": [
"spotify",
"apple_music",
"youtube_music",
"tidal",
"deezer"
],
"territories": ["worldwide"],
"release_date": "2025-09-01T00:00:00Z",
"pricing_tier": "standard"
}
Query Parameters:
?start_date=2025-01-01&end_date=2025-08-31&platform=all
Response:
{
"total_revenue": 1234.56,
"currency": "USD",
"period": {
"start": "2025-01-01",
"end": "2025-08-31"
},
"breakdown": [
{
"platform": "spotify",
"streams": 45678,
"revenue": 456.78
}
]
}
Starter
100 requests/hour
Professional
1,000 requests/hour
Enterprise
Unlimited
200
Success401
Authentication required403
Access restricted (tier limitation)404
Endpoint not found429
Rate limit exceeded500
Internal server error