- User
- Song
- Auth
- Artist
- Collection
- Search
- Payment
- Check HealthGET
Get All Artists
GET
/v1/artist
Artist
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Query Params
page
integer
optional
Example:
1
limit
integer
optional
Example:
30
managed
boolean
optional
Example:
true
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.hustmusik.live/v1/artist?page=1&limit=30&managed=true'
Responses
🟢200Success
application/json
Body
object {0}
Example
{
"data": [
{
"id": "5ea2b239-9ba9-4251-b110-343978aa30e9",
"name": "Taylor Swift",
"avatarurl": "<image link>"
},
{
"id": "edec6616-64ef-4db5-aea8-189fb7bf07f7",
"name": "some guy",
"avatarurl": "<image link>"
}
]
}
Modified at 2024-12-17 04:47:46