Discover/RetailMeNot API
live

RetailMeNot APIretailmenot.com

Access RetailMeNot coupons, promo codes, and cash back offers across 6000+ stores via 3 endpoints. Search by keyword or fetch deals by store slug.

This API takes change requests — .
Endpoint health
verified 6h ago
search_coupons
get_stores
get_store_coupons
3/3 passing latest checkself-healing
Endpoints
3
Updated
6h ago

What is the RetailMeNot API?

The RetailMeNot API gives access to coupon codes, sales, and cash back offers across more than 6,000 merchants through 3 endpoints. Use search_coupons to query by keyword — 'grocery', 'electronics', 'pizza' — and get back a ranked list of current offers with discount amounts, offer types, and promo codes. Use get_store_coupons to pull all active deals for a specific store by slug, and get_stores to enumerate the full merchant catalog.

This call costs3 credits / call— charged only on success
Try it
Search term for finding coupons (e.g. 'grocery', 'pizza', 'electronics'). Matched against RetailMeNot categories and store names.
api.parse.bot/scraper/0b19f338-de62-4d4e-8737-da11b18b9053/<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/0b19f338-de62-4d4e-8737-da11b18b9053/search_coupons?query=grocery' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 3 totalmissing one? ·

Search for coupons and promo codes by keyword. Resolves the query to the best matching category or store page on RetailMeNot, then returns all available coupons from that page. Results include coupon codes, sales, and cash back offers with discount amounts and store attribution. For coupon-type offers, the actual promo code string is included when available.

Input
ParamTypeDescription
querystringSearch term for finding coupons (e.g. 'grocery', 'pizza', 'electronics'). Matched against RetailMeNot categories and store names.
Response
{
  "type": "object",
  "fields": {
    "query": "The search term used",
    "total": "Number of coupons returned",
    "coupons": "Array of coupon objects with store, title, offer_type, type_label, discount, store_slug, offer_id, and code (the actual promo code string or null for non-code offers)",
    "source_url": "The RetailMeNot page URL the coupons were scraped from"
  },
  "sample": {
    "data": {
      "query": "grocery",
      "total": 24,
      "coupons": [
        {
          "store": "Instacart",
          "title": "$25 Off Sitewide",
          "discount": "$25 Off",
          "offer_id": "RBC3B5GMYNHZDE7O6WPPOX57SY",
          "offer_type": "COUPON",
          "store_slug": "instacart.com",
          "type_label": "Coupon code"
        },
        {
          "store": "Instacart",
          "title": "$10 Off $35 Eligible Items With FSA Or HSA Payment",
          "discount": "$10 Off",
          "offer_id": "4V3RY3W7D5HNVO7U5QY6YPIJ2M",
          "offer_type": "COUPON",
          "store_slug": "instacart.com",
          "type_label": "Coupon code"
        },
        {
          "store": "Instacart",
          "title": "1% Cash Back For Purchases Sitewide",
          "discount": "+1% Back",
          "offer_id": "QSIMAN6TPRCO7E5UVZ5AZQC2DU",
          "offer_type": "REWARD",
          "store_slug": "instacart.com",
          "type_label": "Cash Back"
        }
      ],
      "source_url": "https://www.retailmenot.com/coupons/grocery"
    },
    "status": "success"
  }
}

About the RetailMeNot API

Endpoints and What They Return

The API has three endpoints. get_stores reads RetailMeNot's merchant catalog and returns an array of store objects — each with store_name, store_slug (e.g. target.com), and a full url — covering 6,000+ stores. This is useful for discovery and for building a local index of valid slugs to pass to other endpoints.

get_store_coupons accepts a store_slug parameter and returns every current coupon for that merchant. Each coupon object includes title, offer_type, type_label, discount, code (the literal promo code where one exists), offer_id, and store_slug. The response also includes a scraped_at ISO 8601 timestamp and the source_url for the RetailMeNot page that was read.

Keyword Search

search_coupons accepts a free-text query string and resolves it to the best-matching category or store page on RetailMeNot. It returns the same coupon object shape as get_store_coupons — with store, title, offer_type, type_label, discount, code, and store_slug — plus a total count and source_url. This is the right endpoint when you don't already know a store slug and want to surface relevant deals by topic.

Coverage and Freshness

The get_stores endpoint pulls from RetailMeNot's sitemap in a single request without traversing sub-sitemaps; the returned store list reflects what is indexed there at call time. get_store_coupons makes up to two requests per call to assemble the full coupon set for a store. The scraped_at field tells you exactly when the response data was generated, so you can track freshness in your own pipeline.

Reliability & maintenanceVerified

The RetailMeNot API is a managed, monitored endpoint for retailmenot.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when retailmenot.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 retailmenot.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
6h ago
Latest check
3/3 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 browser extension that surfaces promo codes by matching the current domain against store_slug values from get_stores
  • Aggregate cash back offers across grocery chains by querying search_coupons with food-related keywords
  • Monitor deal availability for a specific retailer over time using get_store_coupons and comparing scraped_at timestamps
  • Populate a deal-comparison site by iterating over the store catalog from get_stores and fetching coupons per slug
  • Alert users when a discount value exceeds a threshold for their saved stores using get_store_coupons
  • Categorize offer types by grouping coupon objects on offer_type and type_label fields across multiple store responses
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does RetailMeNot have an official developer API?+
RetailMeNot does not currently offer a public developer API. This API provides structured access to coupon and store data from the RetailMeNot site.
What does the `code` field in a coupon object contain?+
The code field contains the literal promo code string when one is associated with an offer (e.g. 'SAVE20'). For sale or cash back offer types that do not require a code, the field may be empty or absent. The offer_type and type_label fields distinguish between promo codes, sales, and cash back deals.
Does the API return historical or expired coupons?+
No. Both get_store_coupons and search_coupons return only the offers currently listed on RetailMeNot's store or category pages at query time. Historical deal data and expired offers are not exposed. The scraped_at timestamp tells you how recent the live response is.
Can I filter coupons by offer type or minimum discount within the API?+
The endpoints return the full set of available coupons for a store or search result without built-in filtering. You can filter on offer_type, type_label, or discount client-side after receiving the response. You can also fork this API on Parse and revise it to add server-side filtering parameters.
Does the API cover affiliate link details or click-through tracking URLs for each coupon?+
Not currently. Coupon objects include offer_id, code, discount, and store_slug, but no affiliate or click-tracking URLs are returned. You can fork this API on Parse and revise it to add that endpoint if the source page exposes those links.
Page content last updated . Spec covers 3 endpoints from retailmenot.com.
Related APIs in EcommerceSee all →
coupons.com API
Search and discover coupons, printable offers, and store-specific deals from Coupons.com. Browse top featured offers, find deals across thousands of retailers, and access aggregated coupon data including discount amounts, usage conditions, and expiration details.
thekrazycouponlady.com API
Find and browse current grocery and drugstore manufacturer coupons with details like brand, discount value, expiration dates, and direct offer links to help you save on your shopping. Quickly search through organized coupon listings by category to discover the best deals available at your favorite stores.
lozo.com API
Search for grocery coupons by brand, keyword, or category to find current deals with discount amounts, coupon details, and direct links to the offers. Save money on your shopping by quickly discovering available coupons from Lozo's database.
groupon.com API
Find and access verified discount codes from Groupon Coupons for your favorite stores to save money on purchases. Get current active coupon codes that have been validated and are ready to use.
foodlion.com API
Search and browse digital coupons available at Food Lion stores, with options to filter by category and navigate through paginated results. Find discounts on groceries and household items to use on your next shopping trip.
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.
resellerratings.com API
Search for trusted retailers and explore thousands of verified store reviews, ratings, and detailed seller information to make informed shopping decisions. Browse product categories, read reviewer profiles, and access business highlights to compare stores before you buy.
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.