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.

This API takes change requests — .
Endpoint health
verified 6d ago
get_weekly_mealboxes
search_products
get_product_detail
3/3 passing latest checkself-healing
Endpoints
3
Updated
6d 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.

This call costs3 credits / call— charged only on success
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=35&year=2026&language=fr' \
  -H 'X-API-Key: $PARSE_API_KEY'
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 & maintenanceVerified

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.

Last verified
6d 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 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/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 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 →