Skip to main content
GET
https://enterprise.spacemedia.uk
/
api
/
v1
/
artists
List Artists
curl --request GET \
  --url https://enterprise.spacemedia.uk/api/v1/artists \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "4cbb71fa-6e92-4a8b-9c3d-0b6811ef6f1b",
      "uuid": "4cbb71fa-6e92-4a8b-9c3d-0b6811ef6f1b",
      "name": "Nova Vale",
      "url": "/artists/4cbb71fa-6e92-4a8b-9c3d-0b6811ef6f1b",
      "viewUrl": "/artists/4cbb71fa-6e92-4a8b-9c3d-0b6811ef6f1b",
      "editRoute": "/artists/4cbb71fa-6e92-4a8b-9c3d-0b6811ef6f1b/edit",
      "artist_type": "Primary Artist",
      "spotify_id": "6dDemoNovaVale",
      "releases_count": 1,
      "tracks_count": 2,
      "total_releases": 1,
      "total_tracks": 2,
      "total_streams": 125000,
      "metadata": {
        "country": "GB"
      },
      "created_at": "2026-03-22T11:00:00+00:00",
      "updated_at": "2026-04-15T10:20:00+00:00"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.spacemedia.uk/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

Accept
string

Use application/json for API responses.

Authorization
string

Bearer access token. Use Bearer <YOUR_ACCESS_TOKEN>.

X-User-Id
string

Optional user UUID to perform the request on behalf of a user in the same organization.

Query Parameters

optional Search term to filter subscriptions by name, email, or other attributes.

Example:

"john"

page
integer

optional The page number to return. Defaults to 1.

Example:

2

size
integer

optional Number of subscriptions per page. Defaults to 10.

Example:

20

sort
string

optional Sort direction for creation date. Either "asc" or "desc". Defaults to "desc".

Example:

"asc"

Response

Success

The response is of type object.