list_store_directory_with_counts
coupons.comReturns every store in the https://coupons.com alphabetical directory with a get_store_coupons compatible slug and its active voucher count from popular stores data.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_store_directory_with_counts?
Returns every store in the https://coupons.com alphabetical directory with a get_store_coupons compatible slug and its active voucher count from popular stores data. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — call it with no parameters and get the result back without maintaining a scraper.
Response
{
"stores": [
{
"slug": "<string>",
"display_name": "<string>",
"directory_group": "<string>",
"active_voucher_count": 0
}
],
"total_stores": 0,
"stores_with_known_active_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/b1f68e1d-ce1c-4b93-8cf0-7f2d078db619/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "b1f68e1d-ce1c-4b93-8cf0-7f2d078db619",
"variables": {}
}'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="b1f68e1d-ce1c-4b93-8cf0-7f2d078db619") — the "list_store_directory_with_counts" function, which returns every store in the https://coupons.com alphabetical directory with a get_store_coupons compatible slug and its active voucher count from popular stores data.. It takes no parameters. Return the result as structured JSON.