Album
album.get
Introduction
Track
Album
album.get
Get album data from our database, including its name, release date, and artist name.
GET
/
ws
/
1.1
/
album.get
curl --request GET \
--url https://api.musixmatch.com/ws/1.1/album.get
{
"message": {
"body": {
"album": {
"album_id": 56126508,
"album_name": "Did you know that there's a tunnel under Ocean Blvd",
"album_release_date": "2023-03-24",
"artist_id": 13805436,
"artist_name": "Lana Del Rey",
"restricted": 0,
"updated_time": "2024-08-26T09:08:33Z"
}
},
"header": {
"execute_time": 0.012861967086792,
"status_code": 200
}
}
}
Authorizations
Query Parameters
The Musixmatch album ID.
Response
200 - application/json
200 OK / 401 Unauthorized / 404 Not Found
curl --request GET \
--url https://api.musixmatch.com/ws/1.1/album.get
{
"message": {
"body": {
"album": {
"album_id": 56126508,
"album_name": "Did you know that there's a tunnel under Ocean Blvd",
"album_release_date": "2023-03-24",
"artist_id": 13805436,
"artist_name": "Lana Del Rey",
"restricted": 0,
"updated_time": "2024-08-26T09:08:33Z"
}
},
"header": {
"execute_time": 0.012861967086792,
"status_code": 200
}
}
}