Rocksky
  1. charts
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 Artist
      • Get Several Artists
    • charts
      • Get Scrobbles Per Day
        GET
    • 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. charts

Get Scrobbles Per Day

GET
/public/scrobbleschart

Request

Query Params
songuri
string 
optional
Example:
at://did:plc:7vdlgi2bflelz7mmuxoqjfcr/app.rocksky.song/3lhpraqi7ec2d
did
string 
optional
Example:
tsiry-sandratraina.com
artisturi
string 
optional
Example:
at://did:plc:7vdlgi2bflelz7mmuxoqjfcr/app.rocksky.artist/3lhlaglv5722i
albumuri
string 
optional
Example:
at://did:plc:7vdlgi2bflelz7mmuxoqjfcr/app.rocksky.artist/3lhlaglv5722i

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/public/scrobbleschart?songuri=at://did:plc:7vdlgi2bflelz7mmuxoqjfcr/app.rocksky.song/3lhpraqi7ec2d&did=tsiry-sandratraina.com&artisturi=at://did:plc:7vdlgi2bflelz7mmuxoqjfcr/app.rocksky.artist/3lhlaglv5722i&albumuri=at://did:plc:7vdlgi2bflelz7mmuxoqjfcr/app.rocksky.artist/3lhlaglv5722i'

Responses

🟢200OK
application/json
Body
array of:
date
string 
required
count
integer 
required
Example
[
  {
    "date": "2025-02-03",
    "count": 1
  },
  {
    "date": "2025-02-04",
    "count": 6
  },
  {
    "date": "2025-02-05",
    "count": 170
  },
  {
    "date": "2025-02-06",
    "count": 126
  },
  {
    "date": "2025-02-07",
    "count": 123
  },
  {
    "date": "2025-02-08",
    "count": 65
  },
  {
    "date": "2025-02-09",
    "count": 311
  },
  {
    "date": "2025-02-10",
    "count": 134
  },
  {
    "date": "2025-02-12",
    "count": 89
  },
  {
    "date": "2025-02-13",
    "count": 96
  },
  {
    "date": "2025-02-14",
    "count": 47
  },
  {
    "date": "2025-02-15",
    "count": 133
  },
  {
    "date": "2025-02-16",
    "count": 221
  },
  {
    "date": "2025-02-17",
    "count": 112
  },
  {
    "date": "2025-02-18",
    "count": 75
  },
  {
    "date": "2025-02-19",
    "count": 56
  },
  {
    "date": "2025-02-20",
    "count": 85
  },
  {
    "date": "2025-02-21",
    "count": 123
  },
  {
    "date": "2025-02-22",
    "count": 38
  },
  {
    "date": "2025-02-23",
    "count": 29
  },
  {
    "date": "2025-02-24",
    "count": 83
  },
  {
    "date": "2025-02-25",
    "count": 104
  },
  {
    "date": "2025-02-26",
    "count": 131
  },
  {
    "date": "2025-02-27",
    "count": 76
  },
  {
    "date": "2025-02-28",
    "count": 66
  },
  {
    "date": "2025-03-02",
    "count": 7
  },
  {
    "date": "2025-03-03",
    "count": 139
  }
]
Previous
Get Several Artists
Next
Get User's Playlists
Built with