# Open Food Intel — Barcode & Product Search

> Open Food Intel — Barcode & Product Search is a paid API for AI agents from the-stall.intuitek.ai, paid per call via x402, $0.021/call, status unknown (last checked 2026-09-14).

Search or look up packaged food products by keyword or barcode, returning nutritional info, Nutri-Score grades, ingredients, and product metadata from a 3M+ product database.

## Facts

- Endpoint: GET https://the-stall.intuitek.ai/cap/open-food-intel
- Price: $0.021/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/open-food-intel-barcode-product-search-f3f9a399
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ieFflEsCuGtF7NM_hKcUW

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability open-food-intel-barcode-product-search-f3f9a399
```

Example prompt: Can you look up the nutritional info and Nutri-Score grade for the product with barcode 0038000845260? I want to know what's in it and how healthy it is.

## When to prefer this

Use this endpoint when you need to look up packaged food product data by UPC/EAN barcode or by keyword search, especially when you need Nutri-Score grades, ingredient lists, or per-100g nutritional values. Prefer this over generic web search when structured, machine-readable food data is required. It is well-suited for diet tracking agents, grocery assistants, allergen checkers, and health-conscious shopping tools. No API key or account registration is needed — payment is per-call via USDC on Base.

## Known failure modes

- Barcode not found in database — product returns empty or 404-style response
- Search query too generic returns irrelevant products
- Country filter reduces results to zero matches
- Invalid barcode format (non-numeric or wrong digit count) causes validation error
- Rate or payment failure via x402 protocol returns 402 status
- Nutritional data may be incomplete or community-contributed and unverified for some products

## How this service works

Domain-agnostic x402 capability chassis by IntuiTek¹. 300 AI-callable data services — pay USDC on Base mainnet. No accounts or API keys required.

## Output

Returns a list of matching food products (for search mode) or a single product record (for barcode mode), each containing product name, brand, barcode, Nutri-Score grade (a–e), nutritional values per 100g (calories, fat, sugar, protein, salt, etc.), ingredients text, country availability, and product image URL where available.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "mode"
     ],
     "properties": {
      "code": {
       "type": "string",
       "description": "UPC (12-digit), EAN-13, or EAN-8 barcode (required for barcode mode)."
      },
      "mode": {
       "enum": [
        "search",
        "barcode"
       ],
       "type": "string",
       "description": "search — keyword query across 3M+ products. barcode — exact UPC/EAN lookup."
      },
      "limit": {
       "type": "integer",
       "maximum": 20,
       "minimum": 1,
       "description": "Number of results for search mode (1–20). Default: 10."
      },
      "query": {
       "type": "string",
       "description": "Product name, brand, or keyword (required for search mode)."
      },
      "country": {
       "type": "string",
       "description": "Filter search by country (e.g. 'united-states', 'france', 'japan'). Default: all countries."
      },
      "nutrition_grade": {
       "enum": [
        "a",
        "b",
        "c",
        "d",
        "e",
        "all"
       ],
       "type": "string",
       "description": "Filter search results by Nutri-Score grade. a=best, e=worst, all=no filter. Default: all."
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/open-food-intel-barcode-product-search-f3f9a399/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from the-stall.intuitek.ai](https://www.zero.xyz/host/the-stall.intuitek.ai/llms.txt)
