get_artist_tracks
traxsource.comReturns an artist profile and paginated track catalog from https://traxsource.com by artist ID and URL slug, including the artist bio when available and up to 50 tracks per page.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_artist_tracks?
Returns an artist profile and paginated track catalog from https://traxsource.com by artist ID and URL slug, including the artist bio when available and up to 50 tracks per page. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass artist_id, slug, page, per_page, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"page": 0,
"slug": "<string>",
"count": 0,
"artist": {},
"tracks": [
{}
],
"per_page": 0,
"artist_id": 0,
"source_url": "<string>",
"canonical_url": "<string>",
"has_next_page": true
}Call it
curl --location 'https://us-prod.notte.cc/functions/5a7d603c-cf52-40ac-8fd3-d34e55c8bcb1/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "5a7d603c-cf52-40ac-8fd3-d34e55c8bcb1",
"variables": {
"artist_id": 861,
"slug": "michael-gray",
"page": 1,
"per_page": 20,
"timeout_seconds": 35
}
}'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="5a7d603c-cf52-40ac-8fd3-d34e55c8bcb1") — the "get_artist_tracks" function, which returns an artist profile and paginated track catalog from https://traxsource.com by artist ID and URL slug, including the artist bio when available and up to 50 tracks per page.. It takes artist_id (int), slug (str), page (int), per_page (int), timeout_seconds (int). Return the result as structured JSON.