Data
Music artist profile (TheAudioDB) API
Music artist/band profile from TheAudioDB: genre, style, mood, country, label, member count, formed year, and a derived career span (years active, active-until present/year, active flag) plus a trimmed biography. Answers 'profile + genre + how long active for band X', 'is this band still active'.
Price$0.01per request
MethodPOST
Route/v1/data/audiodb-artist
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache604800s public
datamusicartistbandtheaudiodbbiographygenreentertainment
API URL
Integration docshttps://x402.hexl.dev/v1/data/audiodb-artistExample request
{
"name": "Daft Punk"
}Example response
{
"query": "Daft Punk",
"artistId": "111492",
"name": "Daft Punk",
"genre": "House",
"style": "Electronic",
"mood": "Happy",
"country": "Paris, France",
"label": "Columbia",
"members": 2,
"formedYear": 1992,
"activeUntil": "present",
"careerYears": 34,
"active": true,
"website": null,
"bio": null
}Input schema
{
"type": "object",
"required": [
"name"
],
"properties": {
"name": {
"type": "string",
"description": "Artist or band name."
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}