Retrieve a paginated list of assets. Supports filtering, sorting, and searching.
Query Parameters:
curl --request GET \
--url https://server26-dot-royalti-project.uc.r.appspot.com/asset \
--header 'Authorization: Bearer <token>'
{
"success": true,
"data": {
"items": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"title": "<string>",
"type": "Audio",
"isrc": "<string>",
"iswc": "<string>",
"displayArtist": "<string>",
"mainArtist": [
"<string>"
],
"version": "<string>",
"mainGenre": [
"<string>"
],
"subGenre": [
"<string>"
],
"externalId": "<string>",
"contributors": {
"producers": [
"<string>"
],
"mixers": [
"<string>"
]
},
"artists": [
"<string>"
],
"splits": [
{
"user": "<string>",
"share": 123
}
],
"isDraft": true,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
],
"total": 123,
"page": 123,
"limit": 123
}
}
JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"
Page number
Items per page
Search term
List of assets retrieved successfully
The response is of type object
.
curl --request GET \
--url https://server26-dot-royalti-project.uc.r.appspot.com/asset \
--header 'Authorization: Bearer <token>'
{
"success": true,
"data": {
"items": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"title": "<string>",
"type": "Audio",
"isrc": "<string>",
"iswc": "<string>",
"displayArtist": "<string>",
"mainArtist": [
"<string>"
],
"version": "<string>",
"mainGenre": [
"<string>"
],
"subGenre": [
"<string>"
],
"externalId": "<string>",
"contributors": {
"producers": [
"<string>"
],
"mixers": [
"<string>"
]
},
"artists": [
"<string>"
],
"splits": [
{
"user": "<string>",
"share": 123
}
],
"isDraft": true,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
],
"total": 123,
"page": 123,
"limit": 123
}
}