Rocksky
  1. artists
Rocksky
  • Overview
  • Introduction
  • FAQ
  • How-Tos
    • Migrating to Rocksky Scrobble API
    • Use Rocksky with Claude Desktop
  • CLI
    • Overview
    • Commands
      • login
      • mcp
      • whoami
      • nowplaying
      • scrobbles
      • search
      • stats
      • artists
      • albums
      • tracks
      • scrobble
      • create apikey
      • help
  • API Reference
    • albums
      • Get User's Albums
      • Get Album
      • Get Several Albums
    • artists
      • Get User's Artists
        GET
      • Get Artist
        GET
      • Get Several Artists
        GET
    • charts
      • Get Scrobbles Per Day
    • playlists
      • Get User's Playlists
      • Get Playlist
    • scrobbles
      • Get Scrobbles
      • Get User's Scrobbles
      • Save 'Now Playing' Song
      • Get 'Now Playing' Song
    • users
      • Find User Profile
    • tracks
      • Get User's Tracks
      • Get Track
      • Get Several Tracks
    • search
      • Search for Item
    • likes
      • Get User's Liked Songs
  1. artists

Get Artist

GET
/users/{did}/app.rocksky.artist/{rkey}

Request

Path Params
did
string 
required
Example:
did:plc:7vdlgi2bflelz7mmuxoqjfcr
rkey
string 
required
Example:
3ljhxmlz3k225

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.rocksky.app/users/did:plc:7vdlgi2bflelz7mmuxoqjfcr/app.rocksky.artist/3ljhxmlz3k225'

Responses

🟢200OK
application/json
Body
name
string 
required
picture
string 
optional
sha256
string 
required
uri
string 
required
xata_createdat
string 
required
id
string 
required
xata_updatedat
string 
required
xata_version
integer 
required
apple_music_link
null 
required
biography
null 
optional
born
null 
optional
born_in
null 
optional
died
null 
optional
spotify_link
null 
optional
tidal_link
null 
optional
youtube_link
null 
optional
listeners
integer 
required
scrobbles
integer 
required
tags
array[string]
required
Example
{
  "name": "Niu Raza",
  "picture": "https://i.scdn.co/image/ab6761610000e5eba596dda6317089bdaa12c219",
  "sha256": "325d53a3dc0e981f554120e12470f3c601d30f2b0e1c503a70b2e14dc3c3f086",
  "uri": "at://did:plc:7vdlgi2bflelz7mmuxoqjfcr/app.rocksky.artist/3ljhxmlz3k225",
  "xata_createdat": "2025-03-03T12:35:47.342Z",
  "xata_updatedat": "2025-04-22T13:22:13.439Z",
  "xata_version": 451,
  "apple_music_link": null,
  "biography": null,
  "born": null,
  "born_in": null,
  "died": null,
  "spotify_link": null,
  "tidal_link": null,
  "youtube_link": null,
  "id": "rec_cv2q48sddc7scqp7vq60",
  "listeners": 2,
  "scrobbles": 146,
  "tags": []
}
Previous
Get User's Artists
Next
Get Several Artists
Built with