GET
/
api
/
songs
curl --request GET \
  --url https://www.beatsfoundation.com/api/songs
{
  "songs": [
    {
      "id": "<string>",
      "title": "<string>",
      "audio_url": "<string>",
      "streams": 123,
      "upvote_count": 123,
      "song_url": "<string>",
      "username": "<string>"
    }
  ],
  "pagination": {
    "total": 123,
    "page": 123,
    "limit": 123,
    "totalPages": 123
  }
}

Query Parameters

page
integer
default:1

Page number for pagination

limit
integer
default:10

Number of items per page

Response

200
application/json
Successfully retrieved songs
songs
object[]
pagination
object