Marketplace
No threads yet
Live

list_preorder_tracks

traxsource.com

Returns upcoming pre-order tracks from https://traxsource.com. Supports catalog-wide results or optional label_id and label_slug scoping, with pagination up to 10 items per page.

Parameters5
Runs8
Updated8d ago
Operational8 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is list_preorder_tracks?

Returns upcoming pre-order tracks from https://traxsource.com. Supports catalog-wide results or optional label_id and label_slug scoping, with pagination up to 10 items per page. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass page, per_page, label_id, label_slug, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "items": [
    {}
  ],
  "label_id": 0,
  "per_page": 0,
  "label_slug": "<string>",
  "source_url": "<string>",
  "returned_count": 0,
  "label_filter_applied": true,
  "source_pages_fetched": [
    0
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/c4fb04b3-2a66-4f26-ba42-1560ee4f514e/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "c4fb04b3-2a66-4f26-ba42-1560ee4f514e",
    "variables": {
        "page": 1,
        "per_page": 10,
        "label_id": 0,
        "label_slug": "",
        "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="c4fb04b3-2a66-4f26-ba42-1560ee4f514e") — the "list_preorder_tracks" function, which returns upcoming pre-order tracks from https://traxsource.com. Supports catalog-wide results or optional label_id and label_slug scoping, with pagination up to 10 items per page..

It takes page (int), per_page (int), label_id (int), label_slug (str), timeout_seconds (int). Return the result as structured JSON.