list_music_labels
dshdaaf.duckdns.orgReturns BP music labels from https://dshdaaf.duckdns.org with each label's source ID, name, slug, last synchronization timestamp, total release count, and synchronization status. Supports optional text and sync-status filtering plus sorting while returning the complete catalog by default.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_music_labels?
Returns BP music labels from https://dshdaaf.duckdns.org with each label's source ID, name, slug, last synchronization timestamp, total release count, and synchronization status. Supports optional text and sync-status filtering plus sorting while returning the complete catalog by default. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, sync_status, sort_by, descending and get the result back without maintaining a scraper.
Response
{
"labels": [
{
"id": "<string>",
"name": "<string>",
"slug": "<string>",
"count": 0,
"last_synced": "<string>",
"sync_status": "<string>"
}
],
"returned": 0,
"total_available": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/5929c891-d62d-404e-a6b7-81cf934e33b9/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "5929c891-d62d-404e-a6b7-81cf934e33b9",
"variables": {
"query": "",
"sync_status": "all",
"sort_by": "name",
"descending": false
}
}'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="5929c891-d62d-404e-a6b7-81cf934e33b9") — the "list_music_labels" function, which returns BP music labels from https://dshdaaf.duckdns.org with each label's source ID, name, slug, last synchronization timestamp, total release count, and synchronization status. Supports optional text and sync-status filtering plus sorting while returning the complete catalog by default.. It takes query (str), sync_status (str), sort_by (str), descending (bool). Return the result as structured JSON.