Retrieve a list of reference songs
December 2, 2024
Table of contents
https://api.useapi.net/v1/mureka/music/refs/?…
Request Headers
Authorization: Bearer {API token}
Content-Type: application/json
API token
is required, see Setup useapi.net for details.
Query Parameters
-
account
is optional when only one account configured. However, if you have multiple accounts configured, this parameter becomes required. -
mood
is optional. Filter songs by mood, to retrieve list supported moods use GET music/moods-and-genres. -
genre
is optional. Filter songs by genre, to retrieve list supported genres use GET music/moods-and-genres. -
last_id
is optional. Use it to retrieve the next page of data. To do so, set its value to thelast_id
returned in the previous response when themore
field in that response istrue
.
Responses
-
{ "list": [ { "id": 1122334455, "url": "https://<song download url>.mp3", "duration_milliseconds": 30000, "mood": "relaxed", "title": "<song title>", "genre": "afrobeat", "username": "<user name>" }, { "id": 66778899, "url": "https://<song download url>.mp3", "duration_milliseconds": 30000, "mood": "restless", "title": "<song title>", "genre": "rock", "username": "<user name>" } ], "last_id": 77665544332211, "more": true }
-
{ "error": "<Error message>", "code": 400 }
-
{ "error": "Unauthorized", "code": 401 }
Model
{ // TypeScript, all fields are optional
list: {
id: number
url: string
duration_milliseconds: number
mood: string
title: string
genre: string
username: string
}[]
last_id: number
more: boolean
}
Examples
-
curl "https://api.useapi.net/v1/mureka/music/refs/?account=account" \ -H "Accept: application/json" \ -H "Authorization: Bearer …"
-
const token = "API token"; const account = "Previously configured account"; const apiUrl = `https://api.useapi.net/v1/mureka/music/refs/?account=${account}`; const response = await fetch(apiUrl, { headers: { "Authorization": `Bearer ${token}`, }, }); const result = await response.json(); console.log("response", {response, result});
-
import requests token = "API token" account = "Previously configured account" apiUrl = f"https://api.useapi.net/v1/mureka/music/refs/?account={account}" headers = { "Content-Type": "application/json", "Authorization" : f"Bearer {token}" } response = requests.get(apiUrl, headers=headers) print(response, response.json())