Logo

OpenMusic API

Endpoints

Song

Retrieve detailed information about a song

GET
/song/{id}

Path Parameters

id*string

The unique identifier of the song

Response Body

application/json

application/json

curl -X GET "http://localhost:8080/api/song/string"
{
  "id": "abc123def456",
  "title": "Example Song Title",
  "artistName": "Example Artist",
  "releaseYear": 2024,
  "coverURL": "/song/abc123def456/art"
}
{
  "message": "string",
  "code": "string"
}