GET
/
artist
/
{id}
/
products
Get Artist Products
curl --request GET \
  --url https://server26-dot-royalti-project.uc.r.appspot.com/artist/{id}/products \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "prod-123",
    "upc": "123456789012",
    "title": "Album Title",
    "isDraft": false,
    "splitCount": 3,
    "count": 50000,
    "royalty": 4500.25,
    "Assets": [
      {
        "id": "asset-456",
        "isrc": "USABC1234567",
        "title": "Song Title",
        "version": "Album Version",
        "AssetProducts": {
          "Number": 1
        }
      }
    ],
    "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 products per page

type
string

Filter by product type

Response

200
application/json

Success

The response is of type object[].