search_retailers
coupons.comSearches retailers by name on https://coupons.com. Returns matching nested retailer and landing-page metadata, including voucher counts, logo paths, cashback details when available, publication status, and store URL paths.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_retailers?
Searches retailers by name on https://coupons.com. Returns matching nested retailer and landing-page metadata, including voucher counts, logo paths, cashback details when available, publication status, and store URL paths. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query and get the result back without maintaining a scraper.
Response
{
"count": 0,
"query": "<string>",
"results": [
{}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/c6a16ac2-b59b-4f4d-b6c5-67d89660fe85/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "c6a16ac2-b59b-4f4d-b6c5-67d89660fe85",
"variables": {
"query": "nike"
}
}'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="c6a16ac2-b59b-4f4d-b6c5-67d89660fe85") — the "search_retailers" function, which searches retailers by name on https://coupons.com. Returns matching nested retailer and landing-page metadata, including voucher counts, logo paths, cashback details when available, publication status, and store URL paths.. It takes query (str). Return the result as structured JSON.