Live
list_category_offers
coupons.comReturns current coupon codes and deals from a https://coupons.com category, sorted by expiration time with retailer details and get_store_coupons compatible slugs.
Parameters1
Runs7
Updated3d ago
Operational7 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 list_category_offers?
Returns current coupon codes and deals from a https://coupons.com category, sorted by expiration time with retailer details and get_store_coupons compatible slugs. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass category_slug and get the result back without maintaining a scraper.
Response
{
"offers": [
{
"code": "<string>",
"title": "<string>",
"offer_id": "<string>",
"offer_type": "<string>",
"is_verified": true,
"retailer_id": "<string>",
"offer_type_id": 0,
"retailer_name": "<string>",
"retailer_path": "<string>",
"retailer_slug": "<string>",
"expiration_time": "<string>",
"retailer_image_alt": "<string>",
"retailer_logo_path": "<string>",
"is_cashback_combinable": true
}
],
"category_url": "<string>",
"total_offers": 0,
"category_slug": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/3f053c98-30f1-4572-8627-994906c6cfea/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "3f053c98-30f1-4572-8627-994906c6cfea",
"variables": {
"category_slug": "fashion-and-accessories"
}
}'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="3f053c98-30f1-4572-8627-994906c6cfea") — the "list_category_offers" function, which returns current coupon codes and deals from a https://coupons.com category, sorted by expiration time with retailer details and get_store_coupons compatible slugs.. It takes category_slug (str). Return the result as structured JSON.