Authorizations
Query Parameters
The Musixmatch artist ID.
Response
200 - application/json
200 OK / 401 Unauthorized / 404 Not Found
curl --request GET \
--url https://api.musixmatch.com/ws/1.1/artist.get
{
"message": {
"body": {
"artist": {
"artist_alias_list": [
{
"artist_alias": "<string>"
}
],
"artist_comment": "<string>",
"artist_country": "<string>",
"artist_credits": {
"artist_list": [
"<any>"
]
},
"artist_id": 123,
"artist_name": "<string>",
"artist_name_translation_list": [
{
"artist_name_translation": {
"language": "<string>",
"translation": "<string>"
}
}
],
"artist_twitter_url": "<string>",
"begin_date": "<string>",
"begin_date_year": "<string>",
"end_date": "<string>",
"end_date_year": "<string>",
"restricted": 123,
"updated_time": "<string>"
}
},
"header": {
"execute_time": 123,
"status_code": 123
}
}
}
Get the artist data from our database.
curl --request GET \
--url https://api.musixmatch.com/ws/1.1/artist.get
{
"message": {
"body": {
"artist": {
"artist_alias_list": [
{
"artist_alias": "<string>"
}
],
"artist_comment": "<string>",
"artist_country": "<string>",
"artist_credits": {
"artist_list": [
"<any>"
]
},
"artist_id": 123,
"artist_name": "<string>",
"artist_name_translation_list": [
{
"artist_name_translation": {
"language": "<string>",
"translation": "<string>"
}
}
],
"artist_twitter_url": "<string>",
"begin_date": "<string>",
"begin_date_year": "<string>",
"end_date": "<string>",
"end_date_year": "<string>",
"restricted": 123,
"updated_time": "<string>"
}
},
"header": {
"execute_time": 123,
"status_code": 123
}
}
}
The Musixmatch artist ID.
200 OK / 401 Unauthorized / 404 Not Found
Show child attributes