Discover/eFarmz API
live

eFarmz APIefarmz.be

Access eFarmz.be weekly organic meal boxes, product search, and product details via 3 structured endpoints. Get prices, tags, allergens, and category data.

Endpoint health
monitored
get_weekly_mealboxes
search_products
get_product_detail
0/3 passing latest checkself-healing
Endpoints
3
Updated
4h ago

What is the eFarmz API?

The eFarmz.be API provides 3 endpoints covering weekly meal box listings, keyword product search, and full product detail for Belgium's organic delivery platform. The get_weekly_mealboxes endpoint returns up to 18 meal boxes per week with names, tags (Classique, Famille, Express, Healthy, Veggie), and a computed primary tag. Product data includes price, brand, origin, allergens, and category hierarchy in both French and Dutch.

Try it
ISO week number (1-53). For example: '23' corresponds to 01/06-07/06 in 2026, '24' to 08/06-14/06, etc.
4-digit year for the period lookup.
Language for meal box names.
api.parse.bot/scraper/915f9bce-6e61-4654-9f7f-7e32bc0e82a9/<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/915f9bce-6e61-4654-9f7f-7e32bc0e82a9/get_weekly_mealboxes?week=24&year=2026&language=fr' \
  -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 efarmz-be-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.efarmz_meal_box_api import Efarmz, Language, MealboxTag

efarmz = Efarmz()

# Get meal boxes for a specific week
week_data = efarmz.mealboxweeks.get(week="24", year="2026", language=Language.FR)
print(f"Week {week_data.week}/{week_data.year} (period {week_data.period}): {week_data.total} boxes")

for box in week_data.mealboxes:
    print(f"  {box.position}. {box.name} [{box.primary_tag}] tags={box.tags}")

# Search for products
for product in efarmz.productsummaries.search(query="tomate", language=Language.FR):
    print(f"{product.id}: {product.name} - {product.price}€ ({product.conditioning})")

    # Drill into full product detail
    detail = product.details()
    print(f"  Description: {detail.description}")
    print(f"  Ingredients: {detail.ingredients_and_allergens}")
    for cat in detail.categories:
        print(f"  Category: {cat.name} (level {cat.level})")
    if detail.brand:
        print(f"  Brand: {detail.brand.name}")
All endpoints · 3 totalmissing one? ·

Get the first 18 cooking meal box names and their tags available for a given week. Each meal box has one or more tags from: Classique, Famille, Express, Healthy, Veggie. A primary_tag is determined by priority order (Healthy > Express > Veggie > Famille > Classique). Returns cooking boxes only (excludes reheat boxes), in the chosen language (French or Dutch).

Input
ParamTypeDescription
weekrequiredstringISO week number (1-53). For example: '23' corresponds to 01/06-07/06 in 2026, '24' to 08/06-14/06, etc.
yearstring4-digit year for the period lookup.
languagestringLanguage for meal box names.
Response
{
  "type": "object",
  "fields": {
    "week": "integer - ISO week number",
    "year": "integer - year",
    "total": "integer - number of meal boxes returned (max 18)",
    "period": "string - the YYYYWW period code sent to the site",
    "language": "string - language code used ('fr' or 'nl')",
    "mealboxes": "array of meal box objects, each containing position (integer, 1-based order on the website), name (string), primary_tag (string, highest priority tag), and tags (array of strings, all applicable tags sorted by priority)"
  },
  "sample": {
    "data": {
      "week": 24,
      "year": 2026,
      "total": 18,
      "period": "202624",
      "language": "fr",
      "mealboxes": [
        {
          "name": "Tagliata de boeuf, sauce au persil et aubergines grillées au citron",
          "tags": [
            "Classique"
          ],
          "position": 1,
          "primary_tag": "Classique"
        },
        {
          "name": "Riz au chorizo et poivrons",
          "tags": [
            "Express"
          ],
          "position": 2,
          "primary_tag": "Express"
        }
      ]
    },
    "status": "success"
  }
}

About the eFarmz API

Weekly Meal Box Data

The get_weekly_mealboxes endpoint accepts an ISO week number (1–53) and an optional year to identify the delivery period. It returns a period code in YYYYWW format, the total number of boxes found (up to 18), and an array of mealboxes. Each meal box object includes a 1-based position reflecting its order on the site, a name, all applicable tags, and a primary_tag derived by priority (Healthy > Express > Veggie > Famille > Classique). The language parameter controls whether names are returned in French (fr) or Dutch (nl).

Product Search

The search_products endpoint accepts a free-text query — for example 'tomate', 'fromage', or 'bio' — and returns up to 10 matching products. Each result includes id, name, slug, price (EUR), image, brand, origin (country code), conditioning, tags, categories, and an is_available flag. When no query is supplied the endpoint returns a default product set, which is useful for browsing without a specific search intent.

Product Detail

The get_product_detail endpoint takes a product_id (such as 'A6789') obtained from search_products results and returns the full record. This includes a description, ingredients and allergen data, a brand object with id, name, description, and image, a deposit amount in EUR, type, and the full tags array. The language parameter applies here as well, switching all text fields between French and Dutch.

Reliability & maintenance

The eFarmz API is a managed, monitored endpoint for efarmz.be — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when efarmz.be 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 efarmz.be 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.

Latest check
0/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 weekly meal planner app that surfaces eFarmz boxes filtered by Healthy or Veggie primary_tag
  • Track week-over-week meal box availability and name changes using the week and year parameters
  • Aggregate product prices in EUR across categories for organic grocery price comparison
  • Display origin country codes and brand details for transparency-focused food apps
  • Search for allergen and ingredient data by product_id to build dietary filter tools
  • Map eFarmz category hierarchies into a custom Belgian organic grocery catalog
  • Monitor which meal box positions appear each week to analyze rotation patterns
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 eFarmz.be have an official public developer API?+
eFarmz.be does not publish a documented public developer API for third-party use. This Parse API is the structured way to access meal box and product data from the platform.
How does the primary_tag field work in get_weekly_mealboxes?+
Each meal box can carry multiple tags (Classique, Famille, Express, Healthy, Veggie). The primary_tag is computed from a fixed priority order: Healthy takes precedence, then Express, then Veggie, then Famille, then Classique. If a box has both Healthy and Veggie tags, primary_tag will be 'Healthy'.
Does the API return more than 18 meal boxes per week or paginated results?+
The get_weekly_mealboxes endpoint returns a maximum of 18 meal boxes per week request, matching the first page of listings for that period. Pagination across additional boxes is not currently supported. You can fork this API on Parse and revise it to add offset or pagination parameters if you need to retrieve beyond the first 18.
Does the API cover product reviews, ratings, or stock levels?+
Not currently. The search_products and get_product_detail endpoints cover price, brand, origin, conditioning, allergens, categories, and availability flags, but do not include customer reviews, star ratings, or granular stock quantities. You can fork this API on Parse and revise it to add an endpoint targeting review or inventory data if those fields are exposed on the product pages.
What languages are supported, and does the language parameter affect all endpoints?+
All three endpoints accept a language parameter that switches text fields between French ('fr') and Dutch ('nl'). This affects meal box names in get_weekly_mealboxes and product names, descriptions, and brand text in search_products and get_product_detail. The response always includes a language field confirming which code was used.
Page content last updated . Spec covers 3 endpoints from efarmz.be.
Related APIs in Food DiningSee all →
carrefour.eu API
Search and browse Carrefour's European online product catalog to access pricing, promotions, availability, and detailed product information including nutritional data. Retrieve comprehensive product details across categories to compare prices and find current deals in real-time.
ah.nl API
Search Albert Heijn products, browse categories, view weekly bonus offers, and fetch detailed product information including nutrition and supplier contact details.
wholefoodsmarket.com API
Search for grocery products, browse weekly sales, and find store locations at Whole Foods Market. Returns pricing, availability, ingredients, and nutritional information.
farmersfridge.com API
Access Farmer's Fridge menu data, product details, kiosk locations, and real-time inventory. Browse the full menu or filter by category, retrieve nutrition facts and allergens for individual products, list kiosk locations by access or location type, and check live stock counts at any specific fridge.
lidl.nl API
Browse Lidl Netherlands weekly leaflet offers, search the online assortment, fetch detailed product information by ERP/product IDs, and retrieve current bestsellers with pricing and availability.
blueapron.com API
Search and browse Blue Apron recipes, menus, and cookbooks to discover meal ideas and get detailed recipe information. Access the complete recipe catalog through sitemaps and detailed recipe listings with ingredients and instructions.
mediamarkt.be API
Search and browse MediaMarkt Belgium's product catalog to find electronics with detailed specifications, pricing, and available variants across all categories. Get comprehensive product information including descriptions and technical details to compare items before purchase.
coop.ch API
Search and browse Coop.ch's entire product catalog, including detailed pricing, product information, and category organization. Find specific groceries, compare items across categories, and access up-to-date pricing data from Switzerland's Coop supermarket.