get_artist_details
open.spotify.comReturns comprehensive Spotify artist information from https://spotify.com, including biography, audience statistics, top tracks, complete discography, related artists, cities and links.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_artist_details?
Returns comprehensive Spotify artist information from https://spotify.com, including biography, audience statistics, top tracks, complete discography, related artists, cities and links. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass artist_id and get the result back without maintaining a scraper.
Response
{
"artist": {},
"top_tracks": [
{}
],
"discography": {
"albums": [
{}
],
"singles": [
{}
],
"total_count": 0,
"compilations": [
{}
]
},
"external_links": [
{}
],
"related_artists": [
{}
],
"top_listener_cities": [
{}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/9d61a7fc-0927-4b5e-99ef-7b8df170d272/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "9d61a7fc-0927-4b5e-99ef-7b8df170d272",
"variables": {
"artist_id": "3WrFJ7ztbogyGnTHbHJFl2"
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="9d61a7fc-0927-4b5e-99ef-7b8df170d272") — the "get_artist_details" function, which returns comprehensive Spotify artist information from https://spotify.com, including biography, audience statistics, top tracks, complete discography, related artists, cities and links.. It takes artist_id (str). Return the result as structured JSON.