Live
get_artist_details
rateyourmusic.comReturns detailed artist profiles and complete discographies with release dates, ratings, counts, links, and artwork from https://rateyourmusic.com.
Parameters1
Runs7
Updated3d ago
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 detailed artist profiles and complete discographies with release dates, ratings, counts, links, and artwork from https://rateyourmusic.com. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass artist_url and get the result back without maintaining a scraper.
Response
{
"artist": {},
"source_url": "<string>",
"discography": [
{}
],
"release_count": 0,
"profile_fields": [
{}
],
"discography_summary": [
{}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/8a589777-6b69-4b3e-bf0e-af5362d07513/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "8a589777-6b69-4b3e-bf0e-af5362d07513",
"variables": {
"artist_url": "DEFAULT_ARTIST_URL"
}
}'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="8a589777-6b69-4b3e-bf0e-af5362d07513") — the "get_artist_details" function, which returns detailed artist profiles and complete discographies with release dates, ratings, counts, links, and artwork from https://rateyourmusic.com.. It takes artist_url (str). Return the result as structured JSON.