search_whosampled
whosampled.comSearches https://whosampled.com across artists and tracks. Returns the single top hit plus relevance-ranked artist and track matches, including profile links, imagery, artist statistics, and track years.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_whosampled?
Searches https://whosampled.com across artists and tracks. Returns the single top hit plus relevance-ranked artist and track matches, including profile links, imagery, artist statistics, and track years. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query and get the result back without maintaining a scraper.
Response
{
"query": "<string>",
"tracks": [
{
"url": "<string>",
"name": "<string>",
"year": 0,
"image_url": "<string>",
"artist_url": "<string>",
"track_slug": "<string>",
"artist_name": "<string>",
"artist_slug": "<string>",
"result_type": "<string>",
"image_url_2x": "<string>"
}
],
"artists": [
{
"url": "<string>",
"name": "<string>",
"covers": 0,
"remixes": 0,
"samples": 0,
"image_url": "<string>",
"artist_slug": "<string>",
"result_type": "<string>",
"image_url_2x": "<string>",
"stats_summary": "<string>"
}
],
"top_hit": {
"url": "<string>",
"name": "<string>",
"covers": 0,
"remixes": 0,
"samples": 0,
"image_url": "<string>",
"artist_slug": "<string>",
"result_type": "<string>",
"image_url_2x": "<string>",
"stats_summary": "<string>"
}
}Call it
curl --location 'https://us-prod.notte.cc/functions/d1b83d19-1ceb-49aa-8293-852e611fde29/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "d1b83d19-1ceb-49aa-8293-852e611fde29",
"variables": {
"query": "Daft Punk"
}
}'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="d1b83d19-1ceb-49aa-8293-852e611fde29") — the "search_whosampled" function, which searches https://whosampled.com across artists and tracks. Returns the single top hit plus relevance-ranked artist and track matches, including profile links, imagery, artist statistics, and track years.. It takes query (str). Return the result as structured JSON.