歌曲管理
获取单个歌曲详情
根据歌曲ID获取详细信息
get/songs/{id}
Path parameters
idinteger required
歌曲ID
Response
成功返回歌曲详情
Example response
{
"added_at": "2024-01-01T12:00:00Z",
"album": "十一月的萧邦",
"artist": "周杰伦",
"bit_rate": 320,
"cover_url": "https://example.com/cover.jpg",
"duration": 253.5,
"file_path": "/music/周杰伦/夜曲.mp3",
"file_size": 10485760,
"format": "mp3",
"genre": "Pop",
"id": 1,
"language": "国语",
"plugin_entry_path": "my-source",
"sample_rate": 44100,
"style": "抒情",
"title": "夜曲",
"track": "3/12",
"type": "local",
"updated_at": "2024-01-01T12:00:00Z",
"url": "https://example.com/song.mp3",
"year": 2005
}