Live
list_label_releases
music.amazon.comReturns albums and singles credited to a label or distributor in the Amazon Music catalog at https://music.amazon.com, including release and track details.
Parameters2
Runs4
Updated1d ago
Operational4 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 list_label_releases?
Returns albums and singles credited to a label or distributor in the Amazon Music catalog at https://music.amazon.com, including release and track details. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass label_or_distributor, max_results and get the result back without maintaining a scraper.
Response
{
"count": 0,
"query": "<string>",
"releases": [
{
"id": "<string>",
"url": "<string>",
"name": "<string>",
"type": "album",
"year": 0,
"image": "<string>",
"tracks": [
{
"id": "<string>",
"url": "<string>",
"name": "<string>",
"duration": "<string>",
"language": "<string>",
"position": 0,
"is_family_friendly": true
}
],
"artists": [
{
"id": "<string>",
"url": "<string>",
"name": "<string>",
"type": "<string>"
}
],
"duration": "<string>",
"explicit": true,
"copyright": "<string>",
"track_count": 0,
"date_published": "<string>",
"label_or_distributor": "<string>"
}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/2def5e2b-aa38-4c0a-97ad-9c112cd5a49c/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "2def5e2b-aa38-4c0a-97ad-9c112cd5a49c",
"variables": {
"label_or_distributor": "Sub Pop",
"max_results": 5
}
}'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="2def5e2b-aa38-4c0a-97ad-9c112cd5a49c") — the "list_label_releases" function, which returns albums and singles credited to a label or distributor in the Amazon Music catalog at https://music.amazon.com, including release and track details.. It takes label_or_distributor (str), max_results (int). Return the result as structured JSON.