tangled
alpha
login
or
join now
tsiry-sandratraina.com
/
rocksky-cli
9
fork
atom
🎧 The official command-line interface for Rocksky — a modern, decentralized music tracking and discovery platform built on the AT Protocol.
9
fork
atom
overview
issues
pulls
pipelines
update README
tsiry-sandratraina.com
10 months ago
6962cf72
32466a18
+19
1 changed file
expand all
collapse all
unified
split
README.md
+19
README.md
···
136
136
137
137
Get the current user's information.
138
138
139
139
+
**Example:**
140
140
+
```json
141
141
+
{
142
142
+
"name": "whoami"
143
143
+
}
144
144
+
```
145
145
+
146
146
+
**Returns:**
147
147
+
148
148
+
The current user's information, including their DID, handle, and other relevant details.
149
149
+
139
150
### nowplaying
140
151
141
152
Get the currently playing track.
···
155
166
```
156
167
157
168
**Returns:**
169
169
+
158
170
The currently playing track for the specified user.
159
171
160
172
### scrobbles
···
175
187
```
176
188
177
189
**Returns:**
190
190
+
178
191
A list of recently played tracks for the specified user.
179
192
180
193
### my-scrobbles
···
189
202
```
190
203
191
204
**Returns:**
205
205
+
192
206
A list of recently played tracks for the current user.
193
207
194
208
### search
···
218
232
```
219
233
220
234
**Returns:**
235
235
+
221
236
A list of search results based on the specified query and filters.
222
237
223
238
### artists
···
239
254
```
240
255
241
256
**Returns:**
257
257
+
242
258
A list of the user's top artists, including their names and play counts.
243
259
244
260
### albums
···
260
276
```
261
277
262
278
**Returns:**
279
279
+
263
280
A list of the user's top albums, including their names and play counts.
264
281
265
282
### tracks
···
281
298
```
282
299
283
300
**Returns:**
301
301
+
284
302
A list of the user's top tracks, including their names and play counts.
285
303
286
304
### stats
···
318
336
```
319
337
320
338
**Returns:**
339
339
+
321
340
A confirmation message indicating that the API key was created successfully.
322
341
323
342