Back to docs/Artists
GET
Artists

Get Artist

Fetch a single artist by Tune ID.

/v1/artists/:tune_id
Method
GET
Path
/v1/artists/:tune_id
Group
Artists

Overview

How to use this endpoint

Use this endpoint when you need structured API data in a predictable JSON shape. Reference the request example, required parameters, and response fields below to wire it into your product or internal tool.

Response format

JSON response

All successful responses return data in a stable JSON envelope and use Tune UUIDs for resource identifiers.

Code example

Example request

request
GET /v1/artists/a87ff679-a2f3-71d1-9ad8-0800200c9a66

Request parameters

Path parameters

ParameterTypeRequiredDescription
tune_iduuidYesStable Tune identifier for the requested resource.

Response schema

Response fields

FieldTypeDescription
tune_iduuidUnique Tune artist identifier.
namestringArtist name.
popularityintegerRelative popularity score from 0 to 100.
followers_totalintegerTotal follower count.
genresstring[]Genres associated with the artist.
imagesobject[]Artist images with url, width, and height.

Code example

Example response

application/json
{
  "data": {
    "tune_id": "a87ff679-a2f3-71d1-9ad8-0800200c9a66",
    "name": "Nova Circuit",
    "popularity": 58,
    "followers_total": 124500,
    "genres": ["electronic", "ambient"],
    "images": [
      {
        "url": "https://cdn.tune.dev/images/a87ff679_640.jpg",
        "width": 640,
        "height": 640
      }
    ]
  }
}

Next steps

Keep exploring the reference