Live
list_catalog_products
strandedrecords.comReturns paginated vinyl product listings from the full catalog or a selected collection on https://www.strandedrecords.com.
Parameters3
Runs5
Updated1h ago
Operational5 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_catalog_products?
Returns paginated vinyl product listings from the full catalog or a selected collection on https://www.strandedrecords.com. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass page, collection_handle, limit and get the result back without maintaining a scraper.
Response
{
"products": [
{}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/2f2151df-921e-45b2-a929-a8f3d91e2e1e/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "2f2151df-921e-45b2-a929-a8f3d91e2e1e",
"variables": {
"page": 1,
"collection_handle": "all",
"limit": 250
}
}'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="2f2151df-921e-45b2-a929-a8f3d91e2e1e") — the "list_catalog_products" function, which returns paginated vinyl product listings from the full catalog or a selected collection on https://www.strandedrecords.com.. It takes page (int), collection_handle (str), limit (int). Return the result as structured JSON.