Discover/Coupons API
live

Coupons APIcoupons.com

Access coupon codes, printable coupons, and store deals from Coupons.com. Search 2000+ retailers, get grocery coupons, and retrieve top featured offers.

Endpoint health
verified 4d ago
get_top_coupons
get_coupons
get_all_stores
search_stores
get_printable_coupons
6/6 passing latest checkself-healing
Endpoints
6
Updated
26d ago

What is the Coupons API?

The Coupons.com API provides 6 endpoints covering digital coupons, printable grocery offers, store-specific deals, and retailer discovery across more than 2000 stores. The get_store_coupons endpoint retrieves all coupon codes and deals for a named retailer by slug, returning fields like code, end_time, is_verified, and is_exclusive. Grocery coupon endpoints expose brand, UPC, category, expiration date, and image URL data for both clippable and printable offers.

Try it

No input parameters required.

api.parse.bot/scraper/9dfd8770-b4d0-4dfa-a345-cf64fc24eda1/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/9dfd8770-b4d0-4dfa-a345-cf64fc24eda1/get_all_stores' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace coupons-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.coupons_com_api import Coupons, Store, StoreSearchResult, StoreCoupon, TopOffer, CouponOffer

coupons = Coupons()

# Browse top featured deals
for offer in coupons.topoffers.list():
    print(offer.title, offer.caption, offer.retailer_name, offer.code)

# Search for a specific retailer
for result in coupons.storesearchresults.search(query="nike"):
    print(result.retailer.name, result.retailer.active_vouchers_count, result.retailer_landing_page.url)

# Get coupons for a specific store
for coupon in coupons.storecoupons.list(slug="amazon"):
    print(coupon.title, coupon.caption, coupon.code, coupon.is_verified)

# Browse digital grocery coupons
for item in coupons.couponoffers.list():
    print(item.offer.brand, item.offer.value, item.offer.expiration_date)

# List all available stores
for store in coupons.stores.list():
    print(store.label, store.url)
All endpoints · 6 totalmissing one? ·

Retrieve the full directory of stores available on coupons.com, organized alphabetically. Returns over 2000 stores with their display names and URL slugs. The slug can be passed to get_store_coupons to fetch coupons for a specific retailer.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "stores": "array of store objects each with label (display name) and url (relative URL path)"
  },
  "sample": {
    "data": {
      "stores": [
        {
          "url": "coupon-codes/a-sight-for-sport-eyes",
          "label": "A Sight For Sport Eyes"
        },
        {
          "url": "coupon-codes/nike",
          "label": "Nike"
        }
      ]
    },
    "status": "success"
  }
}

About the Coupons API

Store and Retailer Discovery

get_all_stores returns an alphabetically organized list of over 2000 retailers, each with a label (store name) and url (relative URL slug). Those slugs feed directly into get_store_coupons and search_stores. search_stores accepts a query string and returns matching retailers with name, logo, activeVouchersCount, and a retailerLandingPage URL — useful for building search-driven coupon discovery flows.

Store-Specific Coupons

get_store_coupons takes a slug parameter (for example, 'amazon' or 'walmart') and returns the full set of available coupons for that retailer. Each coupon object includes id, title, description, type, caption, code, end_time, terms, is_exclusive, is_verified, and is_expired. The response also returns a count integer and the store_slug that was queried, making it straightforward to build per-retailer deal pages or monitor code availability over time.

Grocery and Printable Coupons

get_coupons and get_printable_coupons both return offers arrays of coupon objects with fields including coupon_id, brand, value, category_description, and expiration_date. Both endpoints also return an image_url_prefix string used to construct full coupon image URLs. The digital endpoint targets clippable offers while the printable endpoint covers in-store print-and-redeem coupons — useful for distinguishing redemption channel in grocery or CPG applications.

Top Offers Feed

get_top_coupons provides a curated feed of today's featured deals across retailers. Each entry in top_offers includes id, title, type, description, retailer_name, caption, code, end_time, expiration, and is_exclusive. The count field gives the total number of offers in the response. This endpoint is suited to homepage deal feeds or daily deal digest applications.

Reliability & maintenanceVerified

The Coupons API is a managed, monitored endpoint for coupons.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when coupons.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official coupons.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
4d ago
Latest check
6/6 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a daily deal digest using get_top_coupons fields like retailer_name, code, and end_time.
  • Aggregate grocery savings by brand and category using brand, value, and category_description from get_coupons.
  • Track coupon code availability for specific retailers by polling get_store_coupons with a known slug and monitoring is_expired.
  • Distinguish printable vs. digital grocery offers for in-store vs. online redemption workflows using separate endpoints.
  • Populate a retailer autocomplete search using search_stores results including name, logo, and activeVouchersCount.
  • Build a coupon browser sorted by expiration by combining end_time across store coupon responses.
  • Generate a store directory from get_all_stores slugs and enrich each entry with active coupon counts via search_stores.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Coupons.com have an official developer API?+
Coupons.com does not publish a public developer API. There is no documented REST or GraphQL interface available to third-party developers on their site.
What does `get_store_coupons` return beyond the coupon code itself?+
Each coupon object includes title, description, type, caption, terms, end_time, is_exclusive, is_verified, and is_expired flags alongside the code. The count field in the response tells you how many coupons were returned for that slug.
How do the grocery coupon endpoints differ from the store coupon endpoint?+
get_coupons and get_printable_coupons return product-level grocery offers with fields like brand, value, coupon_id, category_description, and an image_url_prefix for rendering coupon images. get_store_coupons returns retailer-specific promo codes and deals with code, end_time, and is_verified flags. They cover different redemption channels — grocery/CPG vs. online retailer codes.
Does the API support filtering coupons by category, brand, or expiration date?+
Not currently. The endpoints return full offer sets and include fields like category_description, brand, and expiration_date that you can filter client-side, but no server-side filter parameters are exposed. You can fork this API on Parse and revise it to add filtered or paginated endpoints.
Are user account features like clipped coupons or redemption history available?+
No. The API covers publicly available coupon listings, store directories, and deal feeds. Account-level data such as clipped coupons, redemption history, or user savings totals are not exposed. You can fork this API on Parse and revise it to add endpoints for any additional public data surfaces on the site.
Page content last updated . Spec covers 6 endpoints from coupons.com.
Related APIs in EcommerceSee all →
slickdeals.net API
Search and discover deals, coupons, and trending bargains across thousands of retailers, along with community forum discussions about the best offers. Get detailed information about specific deals and instantly find surging hot bargains before they sell out.
coles.com.au API
Search and browse Coles supermarket products by category, view detailed product information, and discover current specials all in one place. Find exactly what you're looking for with powerful search functionality and organized category navigation.
coop.it API
Search and browse Coop Italy's product catalog across categories and subcategories to find detailed information about items, prices, and current offers. Discover product recommendations and get comprehensive details including availability and promotional deals to help you shop more efficiently.
instacart.com API
Search for grocery products across multiple retailers, view store locations and availability, and access detailed product information including prices and descriptions. Find the best deals and nearest stores offering the items you need.
pepper.pl API
Browse deals, coupons, and product categories from Pepper.pl, a popular Polish community marketplace, with the ability to search specific offers and read community comments. Filter deals by category, view detailed information about each offer, and discover the latest coupon codes available.
petco.com API
Browse and search the Petco product catalog, retrieve product details and customer reviews, get search suggestions, find nearby store locations, and discover current deals and promotions.
kaufland.de API
Search for current deals and discounts at Kaufland Germany stores, viewing detailed pricing information and offer validity periods. Find nearby store locations and browse the latest promotional products all in one place.
kroger.com API
Find Kroger grocery store locations across the US organized by state, city, and search parameters. Get detailed store information including directories and specifics for any Kroger location in your area.