get_artist_profile
whosampled.comGets an artist profile from https://whosampled.com using the exact artist URL slug. Returns identity details, aliases, current and past group relationships, members, profile imagery, external links, and aggregate plus role-specific sample, cover, and remix statistics.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_artist_profile?
Gets an artist profile from https://whosampled.com using the exact artist URL slug. Returns identity details, aliases, current and past group relationships, members, profile imagery, external links, and aggregate plus role-specific sample, cover, and remix statistics. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass artist_slug and get the result back without maintaining a scraper.
Response
{
"url": "<string>",
"name": "<string>",
"aliases": [
{}
],
"image_url": "<string>",
"real_name": "<string>",
"statistics": {
"covers": 0,
"remixes": 0,
"samples": 0,
"summary": "<string>",
"all_songs": 0,
"covers_by_artist": 0,
"remixes_by_artist": 0,
"covers_of_artist_songs": 0,
"remixes_of_artist_songs": 0,
"songs_sampled_by_artist": 0,
"facts_about_artist_songs": 0,
"songs_that_sampled_artist": 0
},
"artist_slug": "<string>",
"past_groups": [
{
"url": "<string>",
"name": "<string>",
"artist_slug": "<string>"
}
],
"image_url_2x": "<string>",
"group_members": [
{
"url": "<string>",
"name": "<string>",
"artist_slug": "<string>"
}
],
"current_groups": [
{
"url": "<string>",
"name": "<string>",
"artist_slug": "<string>"
}
],
"external_links": [
{
"url": "<string>",
"label": "<string>"
}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/8596d2fd-8341-4ed2-b63c-5d7b9aae2a5b/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "8596d2fd-8341-4ed2-b63c-5d7b9aae2a5b",
"variables": {
"artist_slug": "Kanye-West"
}
}'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="8596d2fd-8341-4ed2-b63c-5d7b9aae2a5b") — the "get_artist_profile" function, which gets an artist profile from https://whosampled.com using the exact artist URL slug. Returns identity details, aliases, current and past group relationships, members, profile imagery, external links, and aggregate plus role-specific sample, cover, and remix statistics.. It takes artist_slug (str). Return the result as structured JSON.