Live
get_daily_sales_history
firestore.googleapis.comReturns aggregated daily sales history for a card from https://cardladder.com, with each date total price, transaction count, and every other non-empty source field.
Parameters2
Runs6
Updated3d ago
Operational6 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 get_daily_sales_history?
Returns aggregated daily sales history for a card from https://cardladder.com, with each date total price, transaction count, and every other non-empty source field. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass card_id, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"count": 0,
"sales": [
{}
],
"card_id": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/e4b28a4f-f60c-4320-bb0f-b7427cf69f0d/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "e4b28a4f-f60c-4320-bb0f-b7427cf69f0d",
"variables": {
"card_id": "DEFAULT_CARD_ID",
"timeout_seconds": 20
}
}'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="e4b28a4f-f60c-4320-bb0f-b7427cf69f0d") — the "get_daily_sales_history" function, which returns aggregated daily sales history for a card from https://cardladder.com, with each date total price, transaction count, and every other non-empty source field.. It takes card_id (str), timeout_seconds (int). Return the result as structured JSON.