Data
Artist album discography (TheAudioDB) API
An artist's studio album discography from TheAudioDB, sorted chronologically with derived first/latest release years and active-span. Answers 'list albums of artist X with years', 'how long has this artist been releasing music'.
Price$0.01per request
MethodPOST
Route/v1/data/audiodb-discography
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache604800s public
datamusicdiscographyalbumstheaudiodbartisttimelineentertainment
API URL
Integration docshttps://x402.hexl.dev/v1/data/audiodb-discographyExample request
{
"name": "Coldplay"
}Example response
{
"artist": "Coldplay",
"albumCount": 51,
"firstReleaseYear": 1998,
"latestReleaseYear": 2024,
"activeSpanYears": 26,
"albums": [
{
"album": "Safety EP",
"year": 1998
},
{
"album": "Brothers & Sisters",
"year": 1999
},
{
"album": "The Blue Room E.P.",
"year": 1999
},
{
"album": "Parachutes",
"year": 2000
},
{
"album": "Acoustic",
"year": 2000
},
{
"album": "Trouble",
"year": 2000
},
{
"album": "Yellow",
"year": 2000
},
{
"album": "Shiver",
"year": 2000
},
{
"album": "Trouble: Norwegian Live EP",
"year": 2001
},
{
"album": "Don't Panic",
"year": 2001
},
{
"album": "Mince Spies",
"year": 2001
},
{
"album": "In My Place",
"year": 2002
},
{
"album": "The Scientist",
"year": 2002
},
{
"album": "Clocks",
"year": 2002
},
{
"album": "A Rush of Blood to the Head",
"year": 2002
},
{
"album": "Live 2003",
"year": 2003
},
{
"album": "God Put a Smile Upon Your Face",
"year": 2003
},
{
"album": "Remixes",
"year": 2003
},
{
"album": "X&Y",
"year": 2005
},
{
"album": "Fix You",
"year": 2005
},
{
"album": "Talk",
"year": 2005
},
{
"album": "Speed of Sound",
"year": 2005
},
{
"album": "The Hardest Part",
"year": 2006
},
{
"album": "What If",
"year": 2006
},
{
"album": "The Singles 1999 - 2008",
"year": 2007
},
{
"album": "The Singles 1999-2006",
"year": 2007
},
{
"album": "Viva la Vida or Death and All His Friends",
"year": 2008
},
{
"album": "Prospekt's March EP",
"year": 2008
},
{
"album": "Greatest Hits",
"year": 2008
},
{
"album": "LeftRightLeftRightLeft",
"year": 2009
},
{
"album": "Christmas Lights",
"year": 2010
},
{
"album": "Every Teardrop Is a Waterfall",
"year": 2011
},
{
"album": "Mylo Xyloto",
"year": 2011
},
{
"album": "Live 2012",
"year": 2012
},
{
"album": "Ghost Stories",
"year": 2014
},
{
"album": "Miracles",
"year": 2014
},
{
"album": "Greatest Hits",
"year": 2014
},
{
"album": "Ghost Stories Live 2014",
"year": 2014
},
{
"album": "That Hits",
"year": 2014
},
{
"album": "A Head Full of Dreams",
"year": 2015
},
{
"album": "B-Sides",
"year": 2015
},
{
"album": "Hymn for the Weekend",
"year": 2016
},
{
"album": "Kaleidoscope EP",
"year": 2017
},
{
"album": "Live in Buenos Aires",
"year": 2018
},
{
"album": "Greatest Songs",
"year": 2018
},
{
"album": "Love in Tokyo",
"year": 2018
},
{
"album": "Everyday Life",
"year": 2019
},
{
"album": "Higher Power (acoustic version)",
"year": 2021
},
{
"album": "Music of the Spheres",
"year": 2021
},
{
"album": "Higher Power",
"year": 2021
},
{
"album": "Moon Music",
"year": 2024
}
]
}Input schema
{
"type": "object",
"required": [
"name"
],
"properties": {
"name": {
"type": "string",
"description": "Artist or band name."
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}