mirror of
https://github.com/koel/koel
synced 2024-11-15 00:47:18 +00:00
33 lines
676 B
JSON
33 lines
676 B
JSON
|
{
|
||
|
"artists": [
|
||
|
{
|
||
|
"id": 3,
|
||
|
"name": "The Band",
|
||
|
"image": "http://localhost:8088/test/images/sample.png"
|
||
|
}
|
||
|
],
|
||
|
"albums": [
|
||
|
{
|
||
|
"id": 3,
|
||
|
"artist_id": 5,
|
||
|
"name": "The Wall",
|
||
|
"cover": "http://localhost:8088/test/images/sample.png",
|
||
|
"created_at": "2016-02-01 06:48:45",
|
||
|
"is_compilation": false
|
||
|
}
|
||
|
],
|
||
|
"songs": [
|
||
|
{
|
||
|
"id": "03bebf17f54e2afc7c0513fb1d931009",
|
||
|
"album_id": 5,
|
||
|
"artist_id": 3,
|
||
|
"title": "New Title",
|
||
|
"length": 204.11,
|
||
|
"track": null,
|
||
|
"disc": 1,
|
||
|
"created_at": "2019-08-24 18:03:35",
|
||
|
"lyrics": "New lyrics<br />Supports multiline."
|
||
|
}
|
||
|
]
|
||
|
}
|