GET
/
api
/
songs
/
{id}
curl --request GET \
  --url https://www.beatsfoundation.com/api/songs/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "title": "<string>",
  "audio_url": "<string>",
  "streams": 123,
  "upvote_count": 123,
  "song_url": "<string>",
  "username": "<string>"
}

Authorizations

Authorization
string
header
required

Enter your API key as the bearer token

Path Parameters

id
string
required

Song ID

Response

200
application/json
Successfully retrieved song
id
string
title
string
audio_url
string
streams
integer
upvote_count
integer
song_url
string
username
string