Discover/Food Lion API
live

Food Lion APIfoodlion.com

Access Food Lion digital coupons via API. Filter by category, search by product name, paginate results, and retrieve discount details, brand names, and validity dates.

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

What is the Food Lion API?

The Food Lion Coupons API provides a single search_coupons endpoint that returns up to 100 digital coupons per request, each carrying discount details, brand names, validity dates, category metadata, and a recommendation score ranking. Responses include category facets with counts for filtering, pagination state, and a total available coupon count — everything needed to build a coupon browser or savings alert tool against Food Lion's current digital offers.

This call costs3 credits / call— charged only on success
Try it
Number of coupons to return per page (1-100).
Zero-based offset for pagination.
Food Lion service location ID (numeric string). Determines which store's coupon availability is queried.
Category tree ID to filter coupons (e.g. '805' for Dairy & Eggs, '1448' for Laundry/Paper/Cleaning). Available IDs are returned in the facets array of the response.
Free-text search term to filter coupons by product name or description.
api.parse.bot/scraper/bd91c581-ec30-41fd-92ee-8dc87c60c5f3/<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 POST 'https://api.parse.bot/scraper/bd91c581-ec30-41fd-92ee-8dc87c60c5f3/search_coupons' \
  -H 'X-API-Key: $PARSE_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
  "size": "60",
  "start": "0",
  "store_id": "50002071",
  "category_id": "805",
  "search_text": "cereal"
}'
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 foodlion-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: Food Lion Coupons SDK — bounded, re-runnable; every call capped."""
from parse_apis.foodlion_com_api import FoodLion, InvalidInput

client = FoodLion()

# Browse all coupons at the default store, capped to 3 items.
for coupon in client.coupons.search(limit=3):
    print(coupon.name, coupon.title, coupon.end_date)

# Filter by category (Dairy & Eggs = "805") at a specific store.
dairy_coupon = client.coupons.search(store_id="50002071", category_id="805", limit=1).first()
if dairy_coupon:
    print(dairy_coupon.name, dairy_coupon.description, dairy_coupon.max_discount)

# Search by text.
try:
    for coupon in client.coupons.search(search_text="cereal", limit=2):
        print(coupon.id, coupon.name, coupon.category_name)
except InvalidInput as e:
    print("bad input:", e)

print("exercised: coupons.search")
All endpoints · 1 totalmissing one? ·

Search digital coupons available at a Food Lion store location. Returns coupons with discount details, brand names, validity dates, and category information. Results include facets showing available categories with counts. Coupons are sorted by recommendation score. Results are auto-iterated across pages.

Input
ParamTypeDescription
sizeintegerNumber of coupons to return per page (1-100).
startintegerZero-based offset for pagination.
store_idstringFood Lion service location ID (numeric string). Determines which store's coupon availability is queried.
category_idstringCategory tree ID to filter coupons (e.g. '805' for Dairy & Eggs, '1448' for Laundry/Paper/Cleaning). Available IDs are returned in the facets array of the response.
search_textstringFree-text search term to filter coupons by product name or description.
Response
{
  "type": "object",
  "fields": {
    "facets": "array of category facets with id, name, and count",
    "paging": "object with start, size, and total count",
    "coupons": "array of coupon objects with id, title, name, description, dates, discount, and category info",
    "total_available": "integer total number of available coupons"
  },
  "sample": {
    "data": {
      "facets": [
        {
          "id": "1448",
          "name": "Laundry, Paper & Cleaning",
          "count": 74
        },
        {
          "id": "805",
          "name": "Dairy & Eggs",
          "count": 6
        }
      ],
      "paging": {
        "size": 60,
        "start": 0,
        "total": 185
      },
      "coupons": [
        {
          "id": "INMD_877226",
          "name": "Charmin or Bounty",
          "title": "Save $1.00 (1x/day)",
          "end_date": "2026-07-28",
          "targeted": true,
          "image_url": "https://d19hn3jcfcdeky.cloudfront.net/example.png",
          "start_date": "2026-07-22",
          "category_id": "1448",
          "description": "Save $1.00 on ONE Charmin Ultra Toilet Paper 8 Mega XL or 12 Mega Roll or Bounty 6 Double Plus Roll Paper Towel (excludes trial/travel size)",
          "max_discount": 1,
          "category_name": "Laundry, Paper & Cleaning",
          "promotion_type": "Item"
        }
      ],
      "total_available": 185
    },
    "status": "success"
  }
}

About the Food Lion API

What the API Returns

The search_coupons endpoint returns an array of coupon objects, each containing a coupon id, title, name, description, discount specifics, validity dates, and category information. Alongside the coupon list, the response includes a facets array — each facet carries a category id, name, and coupon count — which lets you enumerate available categories and the number of deals in each without a separate lookup. A paging object reports start, size, and total, and a top-level total_available integer gives the full count of active coupons.

Filtering and Pagination

Requests accept a search_text parameter for free-text filtering by product name or description, and a category_id parameter to narrow results to a specific category tree node — for example '805' targets Dairy & Eggs and '1448' targets Laundry/Paper/Cleaning. Pagination is controlled by size (1–100 coupons per page) and start (zero-based offset). An optional store_id numeric string scopes results to a specific Food Lion service location, which matters when store-level availability differs.

Coupon Data Shape

Each coupon object exposes enough detail to render a full coupon card: the promotional title and name identify the offer, description provides terms or qualifying product details, dates fields cover validity windows, and discount carries the actual savings value. Category info on each coupon mirrors the facets taxonomy, so you can group or sort client-side without additional requests. Coupons are ordered by recommendation score in the default response, meaning the most relevant offers surface first.

Reliability & maintenanceVerified

The Food Lion API is a managed, monitored endpoint for foodlion.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when foodlion.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 foodlion.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
2h ago
Latest check
1/1 endpoint 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 Food Lion coupon browser filtered by category using the category_id and facets fields
  • Create savings alerts by polling search_coupons and comparing coupon id sets to detect newly added offers
  • Power a grocery list app that matches items against coupon title and name via search_text
  • Aggregate discount value data across categories using per-coupon discount fields and facet count values
  • Display store-specific promotions by passing a store_id to scope results to a given Food Lion location
  • Track coupon validity windows by monitoring the dates fields for upcoming expirations
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 Food Lion have an official developer API for coupons?+
Food Lion does not publish a documented public developer API. This Parse API is the available programmatic path to Food Lion digital coupon data.
What does the `facets` array in the response actually tell me?+
Each facet object contains a category id, name, and a count of how many coupons currently belong to that category. You can use these to build a category filter UI or to determine which category_id values are active before issuing a filtered request.
Does the `store_id` parameter affect which coupons are returned?+
Yes. Passing a store_id numeric string scopes the query to a specific Food Lion service location, which can affect coupon availability. Omitting it returns results without store-level scoping, which may include or exclude location-specific offers.
Does the API return in-store weekly ad prices or loyalty card pricing?+
No. The API covers digital coupons only — including discount values, validity dates, and category metadata. Weekly ad prices, regular shelf prices, and loyalty pricing are not part of the response. You can fork this API on Parse and revise it to add an endpoint targeting weekly ad or pricing data.
How does pagination work, and is there a limit on how many coupons I can retrieve per request?+
The size parameter accepts values from 1 to 100, controlling how many coupons are returned per page. The start parameter is a zero-based offset for stepping through results. The paging object in each response echoes back start, size, and total, and total_available gives the full count, so you can calculate how many additional pages remain.
Page content last updated . Spec covers 1 endpoint from foodlion.com.
Related APIs in Food DiningSee all →
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.
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.
retailmenot.com API
Search for grocery and retail coupons, promo codes, and cash back offers across thousands of merchants to find the best deals before you shop. Get instant access to current discounts and savings opportunities tailored to your favorite stores and products.
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.
pgbrandsaver.com API
Access current P&G brandSAVER digital coupons to find available discounts on your favorite brands and products, complete with savings amounts and expiration dates. Plan your shopping and maximize your savings by browsing all active coupon offers in one place.
freshexpress.com API
Find and browse the latest coupons, promotional offers, and sweepstakes available for Fresh Express salad and produce products. Access current deals in one convenient place to save on your favorite Fresh Express items.
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.
publix.com API
Access Publix grocery store data including product search, pricing, promotions, weekly ad deals, store locations, and category browsing.