Get All Albums
GET
/v1/collection/albumsRequest
Query Params
page
integer
optional
Example:
1
limit
integer
optional
Example:
20
Request samples
Responses
Success(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
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"
}
}
]
}
Last modified: 24 days ago