Live
get_mix_tracklist
mixesdb.comRetrieves a MixesDB mix page from https://www.mixesdb.com with structured track entries, file and player metadata, genres, notes, tracklist completeness, and extraction warnings.
Parameters1
Runs13
Updated10d ago
Degraded13 runs · 76.9% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_mix_tracklist?
Retrieves a MixesDB mix page from https://www.mixesdb.com with structured track entries, file and player metadata, genres, notes, tracklist completeness, and extraction warnings. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass mix_page and get the result back without maintaining a scraper.
Response
{
"notes": [
"<string>"
],
"tracks": [
{
"cue": "<string>",
"part": "<string>",
"title": "<string>",
"artist": "<string>",
"position": 0,
"is_overlay": true,
"is_unknown": true,
"raw_marker": "<string>",
"record_label": "<string>",
"release_links": [
"<string>"
],
"remix_or_mix_name": "<string>"
}
],
"artwork": [
{
"url": "<string>",
"file_name": "<string>"
}
],
"page_id": 0,
"mix_date": "<string>",
"page_url": "<string>",
"durations": [
"<string>"
],
"categories": [
"<string>"
],
"genre_tags": [
"<string>"
],
"page_title": "<string>",
"revision_id": 0,
"track_count": 0,
"player_links": [
{
"url": "<string>",
"label": "<string>",
"service": "<string>"
}
],
"file_versions": [
{
"part": "<string>",
"duration": "<string>",
"size_bytes": 0,
"bitrate_kbps": 0,
"version_name": "<string>",
"size_megabytes": 0,
"additional_fields": {}
}
],
"last_modified": "<string>",
"external_links": [
"<string>"
],
"page_size_bytes": 0,
"redirected_from": "<string>",
"extraction_warnings": [
{
"code": "<string>",
"message": "<string>",
"raw_text": "<string>",
"track_position": 0
}
],
"tracklist_completeness": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/c316ad0d-7327-4840-afbf-0398796b142f/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "c316ad0d-7327-4840-afbf-0398796b142f",
"variables": {
"mix_page": "1997-03-02 - Daft Punk - Essential Mix"
}
}'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="c316ad0d-7327-4840-afbf-0398796b142f") — the "get_mix_tracklist" function, which retrieves a MixesDB mix page from https://www.mixesdb.com with structured track entries, file and player metadata, genres, notes, tracklist completeness, and extraction warnings.. It takes mix_page (str). Return the result as structured JSON.