pgbrandsaver APIpgbrandsaver.com ↗
Retrieve all active P&G brandSAVER digital coupons via a single API call. Get brand, product, discount value, start date, expiration date, and image URL.
What is the pgbrandsaver API?
The pgbrandsaver.com API exposes all currently active P&G brandSAVER digital coupons through a single list_coupons endpoint, returning a full catalog of typically 50–70 coupon objects per response. Each object includes 6 data points: brand name, product description, discount value, start date, expiration date, and an image URL — everything needed to build a coupon tracker, shopping assistant, or savings aggregator.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/f65fdfc9-5cf1-4f63-976b-1ce6ed0aefcf/list_coupons' \ -H 'X-API-Key: $PARSE_API_KEY'
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 pgbrandsaver-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.
"""Walkthrough: P&G brandSAVER SDK — bounded, re-runnable; every call capped."""
from parse_apis.pgbrandsaver_com_api import PGBrandSaver, ParseError
client = PGBrandSaver()
# List current P&G brandSAVER coupons
for coupon in client.coupons.list(limit=3):
print(coupon.brand_name, coupon.discount_name, coupon.expiration_date)
# Get the first coupon and inspect its details
first = client.coupons.list(limit=1).first()
try:
print(first.brand_name, first.product_description, first.discount_value)
except ParseError as e:
print(f"error: {e.code}")
print("exercised: coupons.list")
Returns all currently available P&G brandSAVER digital coupons. Each coupon includes brand name, product description, discount value, start and expiration dates, and an image URL. The full catalog is returned in a single response (typically 50–70 coupons); no pagination parameter is needed.
No input parameters required.
{
"type": "object",
"fields": {
"total": "total number of coupons returned",
"coupons": "array of coupon objects with brand, product, discount, and date information"
},
"sample": {
"data": {
"total": 58,
"coupons": [
{
"image_url": "https://cdn.coupon.pg.com/swiffer/5356615f-77b9-4eea-8f93-3c0b7002a169.png",
"offer_url": "https://pgbrandsaver.com/coupons",
"brand_name": "SWIFFER",
"start_date": "2026-07-23T04:00:00.000Z",
"incentive_id": 2009044,
"discount_name": "$10.00 Off",
"discount_value": 10,
"expiration_date": "2026-08-30T09:59:59.000Z",
"product_description": "OFF ONE Swiffer PowerMop Starter Kit (excludes trial/travel size)."
}
]
},
"status": "success"
}
}About the pgbrandsaver API
What the API Returns
The list_coupons endpoint returns a single JSON response containing a total count and a coupons array. Each element in the array represents one active digital coupon on the P&G brandSAVER site. Fields include brand (e.g., Tide, Pampers, Gillette), product (a short description of the specific product covered), discount (the savings amount or percentage), start date, and expiration date, plus an image URL for the coupon artwork.
Endpoint Behavior
list_coupons takes no input parameters — the full active catalog is returned in one call. Response size tracks the live inventory on pgbrandsaver.com, which typically runs between 50 and 70 coupons at any given time. Because there is no pagination and no filtering by brand or category at the API level, downstream filtering on brand or expiration must be done client-side.
Freshness and Coverage
The catalog reflects what P&G has published as currently redeemable digital coupons. Expiration dates on individual coupon objects let you filter out soon-to-expire or already-expired offers without a second call. Start dates tell you when an offer became active, which is useful for detecting newly added coupons when polling the endpoint on a schedule.
The pgbrandsaver API is a managed, monitored endpoint for pgbrandsaver.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when pgbrandsaver.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 pgbrandsaver.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.
Will this API break when the source site changes?+
Is this an official API from the source site?+
Can I fix or extend this API myself if I need a new endpoint or field?+
What happens if I call an endpoint that has an issue?+
- Build a coupon alert service that notifies users when a specific P&G brand appears in the active catalog
- Track discount values by brand over time to identify patterns in P&G promotional cycles
- Populate a grocery list app with current P&G savings alongside product descriptions and images
- Filter coupons expiring within 7 days using the expiration date field to surface urgency in a deals newsletter
- Aggregate P&G digital coupons alongside other grocery savings APIs to build a multi-brand coupon dashboard
- Monitor catalog size via the total field to detect when new coupon batches are published
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 200 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 100 req/min |
| Team | $300/mo | 20,000 | 300 req/min |
| Company | $1,000/mo | 100,000 | 500 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.