search_catalog
traxsource.comSearches https://traxsource.com for tracks or releases by keyword and returns paginated record results. Supports tracks or releases result types with up to 50 items per page.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_catalog?
Searches https://traxsource.com for tracks or releases by keyword and returns paginated record results. Supports tracks or releases result types with up to 50 items per page. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass keyword, result_type, page, per_page, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"page": 0,
"items": [
{}
],
"keyword": "<string>",
"per_page": 0,
"source_url": "<string>",
"result_type": "<string>",
"returned_count": 0,
"source_pages_fetched": [
0
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/123aee20-eca2-42eb-8f69-09c1b689f882/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "123aee20-eca2-42eb-8f69-09c1b689f882",
"variables": {
"keyword": "house",
"result_type": "tracks",
"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="123aee20-eca2-42eb-8f69-09c1b689f882") — the "search_catalog" function, which searches https://traxsource.com for tracks or releases by keyword and returns paginated record results. Supports tracks or releases result types with up to 50 items per page.. It takes keyword (str), result_type (str), page (int), per_page (int), timeout_seconds (int). Return the result as structured JSON.