- User
- Song
- Auth
- Artist
- Collection
- Search
- Payment
- Check HealthGET
Get User By ID
GET
/v1/user/{id}
User
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Path Params
id
string
required
Example:
{{userID}}
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 -g --request GET 'https://api.hustmusik.live/v1/user/{{userID}}'
Responses
🟢200OK
application/json
Body
data
object
required
id
string
required
avatarurl
string
required
username
string
required
country
null
required
role
string
required
Example
{
"data": {
"id": "aa587095-a604-4c32-9215-ac74a1db33d5",
"avatarurl": "<image link>",
"username": "Test",
"country": null,
"role": "User"
}
}
🟠404Record Not Found
🔴500Server Error
Modified at 2024-11-03 14:03:17