Skip to main content
Use x-api-key in every request shown here.

List songs

curl -H "x-api-key: YOUR_KEY" \
  "https://api.velora.crickdevs.com/api/songs?page=1&limit=20"

Get a song by id

curl -H "x-api-key: YOUR_KEY" \
  "https://api.velora.crickdevs.com/api/songs/SONG_ID"
curl -H "x-api-key: YOUR_KEY" \
  "https://api.velora.crickdevs.com/api/songs/trending?limit=10"

List playlists

curl -H "x-api-key: YOUR_KEY" \
  "https://api.velora.crickdevs.com/api/playlists?page=1&limit=20"

Playlist details

curl -H "x-api-key: YOUR_KEY" \
  "https://api.velora.crickdevs.com/api/playlists/PLAYLIST_ID"

Playlist songs

curl -H "x-api-key: YOUR_KEY" \
  "https://api.velora.crickdevs.com/api/playlists/PLAYLIST_ID/songs?page=1&limit=20"

List artists

curl -H "x-api-key: YOUR_KEY" \
  "https://api.velora.crickdevs.com/api/artists?page=1&limit=20"

Artist details by username or id

curl -H "x-api-key: YOUR_KEY" \
  "https://api.velora.crickdevs.com/api/artists/USERNAME_OR_ID"

Public user profile

curl -H "x-api-key: YOUR_KEY" \
  "https://api.velora.crickdevs.com/api/users/USERNAME"