list_retailer
coupons.comReturns all active coupon codes and deals for a retailer slug from https://coupons.com, including descriptions, terms, expiration times, verification details, and offer statistics.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_retailer?
Returns all active coupon codes and deals for a retailer slug from https://coupons.com, including descriptions, terms, expiration times, verification details, and offer statistics. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass retailer_slug, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"count": 0,
"coupons": [
{}
],
"retailer_name": "<string>",
"retailer_slug": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/8bfab7b0-52ad-46bd-9914-88ec021d4b8e/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "8bfab7b0-52ad-46bd-9914-88ec021d4b8e",
"variables": {
"retailer_slug": "nike",
"timeout_seconds": 30
}
}'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="8bfab7b0-52ad-46bd-9914-88ec021d4b8e") — the "list_retailer" function, which returns all active coupon codes and deals for a retailer slug from https://coupons.com, including descriptions, terms, expiration times, verification details, and offer statistics.. It takes retailer_slug (str), timeout_seconds (int). Return the result as structured JSON.