Marketplace
No threads yet
Live

get_artist_details

music.amazon.com

Returns artist details from https://music.amazon.com by ASIN, including followers, top tracks, albums, EPs, singles, and related artists.

Parameters1
Runs4
Updated1d ago
Operational4 runs · 100% succeeded
30 days agotoday

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 artist details from https://music.amazon.com by ASIN, including followers, top tracks, albums, EPs, singles, and related artists. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass artist_asin and get the result back without maintaining a scraper.

Response

{
  "eps": [
    {
      "url": "<string>",
      "asin": "<string>",
      "name": "<string>",
      "year": 0,
      "image": "<string>",
      "section": "<string>",
      "explicit": true,
      "artist_url": "<string>",
      "artist_asin": "<string>",
      "artist_name": "<string>",
      "release_type": "<string>",
      "section_position": 0
    }
  ],
  "url": "<string>",
  "asin": "<string>",
  "name": "<string>",
  "image": "<string>",
  "albums": [
    {
      "url": "<string>",
      "asin": "<string>",
      "name": "<string>",
      "year": 0,
      "image": "<string>",
      "section": "<string>",
      "explicit": true,
      "artist_url": "<string>",
      "artist_asin": "<string>",
      "artist_name": "<string>",
      "release_type": "<string>",
      "section_position": 0
    }
  ],
  "singles": [
    {
      "url": "<string>",
      "asin": "<string>",
      "name": "<string>",
      "year": 0,
      "image": "<string>",
      "section": "<string>",
      "explicit": true,
      "artist_url": "<string>",
      "artist_asin": "<string>",
      "artist_name": "<string>",
      "release_type": "<string>",
      "section_position": 0
    }
  ],
  "top_tracks": [
    {
      "url": "<string>",
      "asin": "<string>",
      "name": "<string>",
      "rank": 0,
      "image": "<string>",
      "explicit": true,
      "album_url": "<string>",
      "track_url": "<string>",
      "album_asin": "<string>",
      "artist_url": "<string>",
      "artist_asin": "<string>",
      "artist_name": "<string>"
    }
  ],
  "follower_count": 0,
  "related_artists": [
    {
      "name": "<string>",
      "image": "<string>",
      "station_url": "<string>",
      "station_asin": "<string>"
    }
  ],
  "follower_count_label": "<string>",
  "follower_count_is_minimum": true
}

Call it

curl --location 'https://us-prod.notte.cc/functions/285896c0-9915-4c58-99e9-48ec7f2f298a/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "285896c0-9915-4c58-99e9-48ec7f2f298a",
    "variables": {
        "artist_asin": "B000QJXOGC"
    }
}'

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="285896c0-9915-4c58-99e9-48ec7f2f298a") — the "get_artist_details" function, which returns artist details from https://music.amazon.com by ASIN, including followers, top tracks, albums, EPs, singles, and related artists..

It takes artist_asin (str). Return the result as structured JSON.