get_artist_profile
ra.coGets detailed artist and DJ profile data from https://ra.co, including biography, social links, mixes, and upcoming events. Returns null when the artist profile is incomplete.
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 detailed artist and DJ profile data from https://ra.co, including biography, social links, mixes, and upcoming events. Returns null when the artist profile is incomplete. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass artist_id, artist_slug, events_limit, mixes_limit, related_limit, regions_limit, venues_limit and get the result back without maintaining a scraper.
Response
{
"artist": {},
"source": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/7d3b9174-07c9-4a9b-b4df-3dc8f9c95fbf/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "7d3b9174-07c9-4a9b-b4df-3dc8f9c95fbf",
"variables": {
"artist_id": "79",
"artist_slug": "svenvath",
"events_limit": 20,
"mixes_limit": 20,
"related_limit": 12,
"regions_limit": 10,
"venues_limit": 10
}
}'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="7d3b9174-07c9-4a9b-b4df-3dc8f9c95fbf") — the "get_artist_profile" function, which gets detailed artist and DJ profile data from https://ra.co, including biography, social links, mixes, and upcoming events. Returns null when the artist profile is incomplete.. It takes artist_id (str), artist_slug (str), events_limit (int), mixes_limit (int), related_limit (int), regions_limit (int), venues_limit (int). Return the result as structured JSON.