curl --location --request GET 'http://127.0.0.1:8000/api/v1/albums?page&q&order=earliest' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {{token}}'
{
"status": true,
"message": "string",
"data": {
"current_page": 0,
"data": [
{
"id": 0,
"name": "string",
"intro": "string",
"image_num": 0
}
],
"first_page_url": "string",
"from": 0,
"last_page": 0,
"last_page_url": "string",
"links": [
{
"url": "string",
"label": "string",
"active": true
}
],
"next_page_url": null,
"path": "string",
"per_page": 0,
"prev_page_url": null,
"to": 0,
"total": 0
}
}