- User
- Song
- Auth
- Artist
- Collection
- Search
- Payment
- Check HealthGET
Get All Albums
GET
/v1/collection/albums
Collection
Request
Query Params
page
integer
optional
Example:
1
limit
integer
optional
Example:
20
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.hustmusik.live/v1/collection/albums?page=1&limit=20'
Responses
🟢200Success
application/json
Body
data
array [object {5}]
required
id
string
required
title
string
required
type
string
required
thumbnailurl
string
required
owner
object
required
Example
{
"data": [
{
"id": "3dc708a7-6a1e-4700-9a0a-b65102ec9ddf",
"title": "Test",
"type": "Album",
"thumbnailurl": "<image link>",
"owner": {
"id": "aa587095-a604-4c32-9215-ac74a1db33d5",
"username": "TestUpdated"
}
},
{
"id": "5b69aa3d-77a0-410a-b695-f00da804f5e5",
"title": "Test3",
"type": "EP",
"thumbnailurl": "<image link>",
"owner": {
"id": "aa587095-a604-4c32-9215-ac74a1db33d5",
"username": "TestUpdated"
}
}
]
}
Modified at 2024-11-03 14:53:21