Live
get_album_details
music.amazon.comReturns album metadata and the complete tracklist from https://music.amazon.com by album ASIN, including artist, release date, artwork, durations, explicit flags, and popularity.
Parameters1
Runs5
Updated2d ago
Operational5 runs · 100% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_album_details?
Returns album metadata and the complete tracklist from https://music.amazon.com by album ASIN, including artist, release date, artwork, durations, explicit flags, and popularity. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass album_asin and get the result back without maintaining a scraper.
Response
{
"url": "<string>",
"asin": "<string>",
"name": "<string>",
"explicit": true,
"copyright": "<string>",
"cover_art": "<string>",
"tracklist": [
{
"url": "<string>",
"asin": "<string>",
"name": "<string>",
"duration": "<string>",
"explicit": true,
"language": "<string>",
"position": 0,
"popularity": 0,
"playback_url": "<string>",
"family_friendly": true,
"duration_display": "<string>",
"duration_seconds": 0
}
],
"album_type": "<string>",
"artist_url": "<string>",
"artist_asin": "<string>",
"artist_name": "<string>",
"track_count": 0,
"release_date": "<string>",
"total_duration": "<string>",
"release_datetime": "<string>",
"total_duration_seconds": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/0a127c23-8f35-49b3-8b04-c63cf02d8f1b/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "0a127c23-8f35-49b3-8b04-c63cf02d8f1b",
"variables": {
"album_asin": "B01DPRPZV8"
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="0a127c23-8f35-49b3-8b04-c63cf02d8f1b") — the "get_album_details" function, which returns album metadata and the complete tracklist from https://music.amazon.com by album ASIN, including artist, release date, artwork, durations, explicit flags, and popularity.. It takes album_asin (str). Return the result as structured JSON.