Live
list_just_added_tracks
traxsource.comReturns paginated recently added tracks or releases from https://traxsource.com, filterable by time period and, for tracks, genre.
Parameters6
Runs7
Updated3d ago
Operational7 runs · 100% 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 list_just_added_tracks?
Returns paginated recently added tracks or releases from https://traxsource.com, filterable by time period and, for tracks, genre. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass result_type, period, genre_id, page, per_page, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"page": 0,
"items": [
{}
],
"period": "<string>",
"per_page": 0,
"result_type": "<string>",
"source_urls": [
"<string>"
],
"genre_filter": {},
"period_label": "<string>",
"returned_count": 0,
"source_page_size": 0,
"source_total_pages": 0,
"genre_filter_applied": true,
"source_pages_fetched": [
0
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/02d40e68-6cdf-4f2a-bd11-6c6869dcefb1/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "02d40e68-6cdf-4f2a-bd11-6c6869dcefb1",
"variables": {
"result_type": "tracks",
"period": "last_7_days",
"genre_id": 0,
"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.
prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="02d40e68-6cdf-4f2a-bd11-6c6869dcefb1") — the "list_just_added_tracks" function, which returns paginated recently added tracks or releases from https://traxsource.com, filterable by time period and, for tracks, genre.. It takes result_type (str), period (str), genre_id (int), page (int), per_page (int), timeout_seconds (int). Return the result as structured JSON.