get_verified_promo_codes
groupon.comRetrieves current promo codes carrying Groupon's Verified badge for a requested store from https://www.groupon.com. Returns code details and usage counts sorted by uses today in descending order.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_verified_promo_codes?
Retrieves current promo codes carrying Groupon's Verified badge for a requested store from https://www.groupon.com. Returns code details and usage counts sorted by uses today in descending order. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass store and get the result back without maintaining a scraper.
Response
{
"codes": [
{
"promo_code": "<string>",
"expiry_date": "<string>",
"usage_count": 0,
"discount_title": "<string>",
"additional_source_fields": {}
}
],
"count": 0,
"source_url": "<string>",
"store_query": "<string>",
"resolved_store_name": "<string>",
"resolved_store_slug": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/60b17f9d-193e-41e1-9566-274af6c6faa5/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "60b17f9d-193e-41e1-9566-274af6c6faa5",
"variables": {
"store": "amazon"
}
}'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="60b17f9d-193e-41e1-9566-274af6c6faa5") — the "get_verified_promo_codes" function, which retrieves current promo codes carrying Groupon's Verified badge for a requested store from https://www.groupon.com. Returns code details and usage counts sorted by uses today in descending order.. It takes store (str). Return the result as structured JSON.