Live
search_catalog
music.amazon.comReturns mixed track, artist, and album matches from the Amazon Music catalog at https://music.amazon.com.
Parameters2
Runs5
Updated1d 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 search_catalog?
Returns mixed track, artist, and album matches from the Amazon Music catalog at https://music.amazon.com. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, max_results and get the result back without maintaining a scraper.
Response
{
"count": 0,
"query": "<string>",
"results": [
{
"id": "<string>",
"url": "<string>",
"name": "<string>",
"type": "artist",
"image": "<string>"
}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/8e3866fa-060e-4a81-b436-93674d0e00d0/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "8e3866fa-060e-4a81-b436-93674d0e00d0",
"variables": {
"query": "Radiohead",
"max_results": 20
}
}'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="8e3866fa-060e-4a81-b436-93674d0e00d0") — the "search_catalog" function, which returns mixed track, artist, and album matches from the Amazon Music catalog at https://music.amazon.com.. It takes query (str), max_results (int). Return the result as structured JSON.