This API provides lyrics from Apple Music from Apple Music URL or a music ID. There is only one endpoint available:
/apiYou must provide either the url or id parameter, but not both.
The API returns a JSON object with the following structure:
{
"success": true,
"message": "Lyrics Found",
"status": 200,
"data": "<ttml>..."
}
The API will return appropriate error messages for invalid inputs, missing parameters, or server errors. Always check the response status code and handle errors accordingly in your application.