GET
/
artist
/
{id}
/
assets
Get Artist Assets
curl --request GET \
  --url https://server26-dot-royalti-project.uc.r.appspot.com/artist/{id}/assets \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "123",
    "title": "Song Title",
    "isrc": "USABC1234567",
    "status": "published",
    "splitCount": 3,
    "count": 15000,
    "royalty": 2500.75,
    "Products": [
      {
        "id": "prod-456",
        "upc": "123456789012",
        "title": "Album Title",
        "isDraft": false
      }
    ],
    "Artists": [
      {
        "id": "456",
        "artistName": "Main Artist",
        "type": "primary"
      }
    ]
  }
]

Authorizations

Authorization
string
header
required

JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"

Path Parameters

id
string
required

Artist ID

Query Parameters

page
integer
default:1

Page number for pagination

size
integer
default:10

Number of assets per page

type
string

Filter by asset type

Response

200
application/json

Success

The response is of type object[].