Hust Musik
  1. Song
Hust Musik
  • User
    • Get All Users
      GET
    • Get User By ID
      GET
    • Get User Profile
      GET
    • Get User Listen History
      GET
    • Get Followed Artists
      GET
    • Update User Profile
      POST
    • Get User Playlists
      GET
    • Upsert User Listen History
      POST
    • Follow Artist
      POST
    • Unfollow Artist
      DELETE
  • Song
    • Get All Songs
      GET
    • Add Song
      POST
    • Get Song By ID
      GET
    • Update Song
      POST
    • Delete Song
      DELETE
    • Generate Presigned Download
      GET
    • Generate Presigned Upload
      GET
  • Auth
    • Register User
      POST
    • Sign In
      POST
    • Sign Out
      GET
    • Google Sign In
      GET
    • Update User Credentials
      POST
    • Renew Session
      POST
  • Artist
    • Get All Artists
      GET
    • Get Artist By ID
      GET
    • Add Artist
      POST
    • Update Artist
      POST
    • Delete Artist
      DELETE
  • Collection
    • Get All Collections
    • Get All Playlists
    • Get All Albums
    • Get Collection By ID
    • Add Collection
    • Update Collection
    • Delete Collection
    • Add Song To Collection
    • Delete Song From Collection
  • Search
    • Default Search
    • Search Songs
    • Search Albums
    • Search Playlists
    • Search Users
    • Search Artists
  • Payment
    • Create Zalo Order
    • Get Zalo Order Status
  • Check Health
    GET
  1. Song

Get All Songs

GET
/v1/song
Song

Request

Query Params
page
integer 
optional
Example:
1
limit
integer 
optional
Example:
20

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/song?page=1&limit=20'

Responses

🟢200OK
application/json
Body
data
array [object {5}] 
required
id
string 
optional
title
string 
optional
thumbnailurl
string 
optional
duration
integer 
optional
releasedate
string 
optional
Example
{"data":[{"id":"62f73752-f9c0-4611-853d-b10ed4434515","title":"Fearless (Taylor’s Version)","thumbnailurl":null,"duration":107,"releasedate":"2024-10-20T02:30:08.86562+00:00","genre":null,"views":0},{"id":"418d1f7f-09a4-4f06-8912-ae061b11a070","title":"Breathe (Taylor’s Version)","thumbnailurl":null,"duration":null,"releasedate":"2024-10-30T08:16:57.882128+00:00","genre":null,"views":0}]}
Modified at 2025-05-27 04:32:47
Previous
Unfollow Artist
Next
Add Song
Built with